/* =========================
   1. ROOT / VARIABLES
========================= */
:root {
    --brand-primary: #22c55e;
    --brand-dark: #166534;
    --brand-darker: #064e3b;
    --brand-light: #dcfce7;
    --brand-nav-bg: rgba(220, 252, 231, 0.95);
    --brand-glow: rgba(34, 197, 94, 0.15);

    --bg-canvas: #f8fafc;
    --bg-page: #f5f5fc;
    --bg-soft: #dafce4;

    --text-main: #064e3b;
    --text-body: #111827;
    --text-muted: #475569;
    --text-soft: #4b5563;
    --muted: #6b7280;

    --white: #ffffff;
    --border: #e5e7eb;
    --border-light: rgba(34, 197, 94, 0.1);
    --input-border: #e2e8f0;

    --soft-shadow: 0 10px 30px rgba(34, 197, 94, 0.08);
    --button-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    --top-button-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);

    --font-main: 'Plus Jakarta Sans', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-alt: 'DM Sans', sans-serif;
    --font-display: 'Roboto', sans-serif;
}

/* =========================
   2. RESET / GLOBAL
========================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-canvas);
    color: var(--text-body);
    line-height: 1.6;
}


img {
    display: block;
    width: 100%;
}

svg {
    display: block;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================
   3. REUSABLE UTILITIES
========================= */
.text-center {
    text-align: center;
}

.section-tag,
.sec-label {
    margin-top: 30px;
    display: block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 42px);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    color: var(--brand-dark);
}

.sec-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 1000;
    color: var(--text-body);
    margin-bottom: 12px;
}

.sec-description,
.muted {
    color: var(--muted);
}

p.sec-description {
    margin-bottom: 40px;
}

.small {
    font-size: 0.96rem;
}

.cta-btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    background: var(--brand-primary);
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--button-shadow);
    transition: 0.3s ease;
}

.cta-btn:hover {
    color: #fff !important;
    background: var(--brand-dark);
    transform: translateY(-3px);
}

.learn-more-btn,
.explore-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    background: var(--white);
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 14px;
    border: 2px solid var(--brand-primary);
    transition: 0.3s ease;
}

.learn-more-btn:hover,
.explore-btn:hover {
    background: var(--brand-primary);
    color: var(--white);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: var(--brand-primary);
    color: var(--white);
    font-weight: 800;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: var(--white);
    color: var(--brand-dark);
    transform: translateX(-5px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    background: var(--white);
    color: var(--brand-dark);
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-white:hover {
    background: var(--brand-light);
    transform: scale(1.05);
}

/* =========================
   4. HEADER / NAVIGATION
========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 85px;
    padding: 0 64px;
    background: var(--brand-nav-bg);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

.navbar {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    background: transparent !important;
}

.navbar .container-fluid {
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link,
.navbar-brand.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.logo-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
    flex-shrink: 0;
}

.logo-img-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--brand-dark);
    line-height: 1;
}

.navbar-collapse {
    justify-content: flex-end;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark) !important;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--brand-primary);
    color: var(--white) !important;
}

.navbar-toggler {
    display: none;
    padding: 0;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--brand-dark);
    cursor: pointer;
}

/* =========================
   5. HOME PAGE
========================= */
.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: calc(100vh - 85px);
    padding: 80px 8%;
    background: radial-gradient(circle at top right, var(--brand-light) 0%, var(--bg-canvas) 70%);
}

.hero-content h1 {
    font-weight: 800;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 68px);
    line-height: 1;
    letter-spacing: -3px;
    color: var(--brand-dark);
}

.hero-content h1 span {
    color: var(--brand-primary);
}

.hero-content p {
    max-width: 520px;
    margin-bottom: 35px;
    font-size: 20px;
    color: var(--text-muted);
}

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

.hero-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    height: 450px;
    border-radius: 50% 20% 50% 20%;
    background: var(--brand-primary);
}

.hero-icon-box i {
    font-size: 150px;
    color: var(--white);
}

.about-section {
    padding: 120px 8%;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: 40px;
    border: 8px solid var(--brand-light);
    box-shadow: var(--soft-shadow);
}

.about-text h3 {
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--brand-primary);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 17px;
    color: var(--text-soft);
}

.tools-section {
    padding: 120px 8%;
    background: var(--white);
}

.tools-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tool-card {
    padding: 40px;
    text-align: center;
    border-radius: 25px;
    background: var(--bg-canvas);
    border: 1px solid var(--border-light);
    transition: 0.3s ease;
}

.tool-card:hover {
    background: var(--brand-light);
    transform: scale(1.03);
}

.tool-card i {
    margin-bottom: 20px;
    font-size: 45px;
    color: var(--brand-primary);
}

.tool-card p,
.tool-card h4 {
    color: var(--brand-dark);
}

.tool-card h4 {
    font-size: 22px;
}

.contact-section {
    padding: 120px 8%;
    background: var(--bg-canvas);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 40px;
    border-radius: 40px;
    background: var(--white);
    box-shadow: var(--soft-shadow);
}

.contact-info {
    padding: 50px;
    border-radius: 30px;
    background: var(--brand-dark);
    color: var(--white);
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--brand-primary);
}

.contact-details div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--brand-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--input-border);
    border-radius: 15px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 15px;
    background: var(--brand-primary);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

/* =========================
   6. APP LISTING PAGE
========================= */
.ecosystem-section {
    padding: 90px 8%;
    background: var(--bg-soft);;
    
}

.ecosystem-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-muted);
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.topic-card {
    width: 320px;
    min-height: 380px;

    padding: 40px 30px;
    border-radius: 35px;

    background: var(--white);
    border-bottom: 6px solid transparent;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    text-align: center;

    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.topic-card:hover {
    transform: translateY(-12px);
    border-bottom-color: var(--brand-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 83, 45, 0.1);
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    margin: 0 auto 30px;
    border-radius: 20px;
    background: var(--brand-light);
    color: var(--brand-primary);
    font-size: 26px;
}

.app-logo-box-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo-box-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-box-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
    transition: 0.3s ease;
}

.icon-box-circle:hover {
    transform: translateY(-4px);
    background: var(--brand-dark);
}

.topic-card h3 {
    font-weight: bold;
    min-height: 70px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
}

.topic-card p {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.topic-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
}

.topic-list li i {
    color: var(--brand-primary);
}

.logo-zoom-trigger {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-zoom-trigger:hover {
    transform: scale(1.05);
}

.logo-zoom-trigger::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-zoom-trigger::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #111827 transparent transparent transparent;
    opacity: 0;
    transition: 0.3s;
}

.logo-zoom-trigger:hover::after,
.logo-zoom-trigger:hover::before {
    opacity: 1;
}

/* =========================
   7. APP DETAIL PAGES
========================= */
.back-nav-container {
    position: absolute;
    top: 100px;
    left: 64px;
    z-index: 10;
}

.hero {
    background: var(--brand-light);
    padding: 100px 64px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--brand-primary);
}

.hero p {
    max-width: 1000px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.app-logo-card {
    background: var(--white);
    border-radius: 28px;
    padding: 60px 70px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.app-icon-box {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.app-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
    border-color: var(--brand-primary);
}

.app-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.app-icon-box:hover img {
    transform: scale(1.1);
}

.app-name {
    max-width: 250px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-dark);
}

.content-wrap {
    padding: 64px;
    margin-bottom: 64px;
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.step-card {
    background: var(--white);
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.step-num {
    width: 38px;
    height: 38px;
    background: var(--brand-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card h4 {
    font-weight: 700;
    color: var(--brand-dark);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-dark);
    transition: 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--brand-primary);
    color: var(--white);
}

.video-wrapper {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.cta-banner {
    margin-top: 56px;
    padding: 52px 56px;
    border-radius: 24px;
    background: var(--brand-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transition: 0.3s ease;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner p {
    color: var(--white);
    opacity: 0.9;
}

/* =========================
   8. SUBPAGE HERO
========================= */
.subpage-hero {
    padding: 100px 8%;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-darker) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.subpage-hero::after {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--brand-primary);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 10%;
    width: 250px;
    height: 250px;
    background: var(--brand-light);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.subpage-hero h1 {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 5vw, 54px);
    letter-spacing: -1.5px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.subpage-hero p {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--brand-light);
    opacity: 0.95;
}

/* =========================
   9. FOOTER
========================= */
.site-footer {
    padding: 72px 8% 30px;
    background: var(--brand-darker);
    color: #cbd5e1;
    font-family: var(--font-alt);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: 56px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-wordmark {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-wordmark-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-wordmark-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-wordmark-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
}

.footer-brand-desc {
    max-width: 320px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.75;
    color: #cbd5e1;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: var(--brand-primary);
    transform: translateY(-3px);
}

.footer-col-label {
    display: block;
    margin-bottom: 25px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-primary);
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.footer-nav-links a {
    font-size: 14px;
    color: #cbd5e1;
    transition: 0.2s ease;
}

.footer-nav-links a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-contact-item a {
    color: #cbd5e1;
}

.footer-divider {
    height: 1px;
    margin: 40px 0 30px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #94a3b8;
}

/* =========================
   10. GO TO TOP BUTTON
========================= */
.go-top-anchor,
.go-top-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--white) !important;
    box-shadow: var(--top-button-shadow);
    transition: 0.3s ease;
}

.go-top-anchor:hover,
.go-top-btn:hover {
    background: var(--brand-dark);
    transform: translateY(-5px);
}

/* =========================
   11. CONTACT HUB
========================= */
.contact-area {
    background-color: var(--bg-soft);
    padding: 100px 8%;
    border-radius: 50px;
    margin: 60px 4% 60px;
}

.contact-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-body);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.social-item:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateX(10px);
}

.social-item i {
    font-size: 1.8rem;
    color: var(--brand-primary);
}

.social-item:hover i {
    color: white;
}

/* =========================
   12. RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .hero-section,
    .about-container,
    .contact-wrapper,
    .contact-hub,
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-section .hero-image {
        order: -1;
        margin-bottom: 10px;
    }

    .hero-section .hero-content {
        order: 2;
    }

    .hero-section .hero-icon-box {
        max-width: 340px;
        height: 340px;
        margin: 0 auto;
    }

    .topics-grid {
        justify-content: center;
        gap: 24px;
    }

    .topic-card {
        width: calc(50% - 12px);
        max-width: 320px;
        min-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 32px;
    }

    .hero-content p,
    .ecosystem-desc,
    .footer-brand-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 80px;
        padding: 0 16px;
    }

    .navbar .container-fluid {
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-toggler {
        display: block;
        margin-left: auto;
    }

    .navbar-collapse {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 16px;
        background: var(--brand-nav-bg);
        border-top: 1px solid var(--border-light);
        z-index: 999;
    }

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

    .navbar-nav .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px !important;
    }

    .back-nav-container {
        position: static !important;
        width: 100%;
        padding: 14px 20px 0;
        margin: 0;
        z-index: 20;
        background-color: var(--bg-soft);
    }

    .back-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 22px;
        font-size: 14px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 20px 40px;
    }

    .hero > div:last-child {
        order: -1;
    }

    .app-logo-card {
        margin: 0 auto;
        padding: 18px;
        width: fit-content;
        border-radius: 22px;
    }

    .app-icon-box {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .app-name {
        font-size: 1.5rem;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        gap: 24px;
    }

    .hero-section .hero-image {
        order: -1;
        margin-bottom: 8px;
    }

    .hero-section .hero-content {
        order: 2;
    }

    .hero-section .hero-icon-box {
        max-width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(2.4rem, 9vw, 3.4rem);
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .hero-section .hero-content p {
        font-size: 18px;
    }

    .steps-list,
    .benefits-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        justify-content: center;
        gap: 20px;
    }

    .topic-card {
        width: 100%;
        max-width: 380px;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .about-section,
    .tools-section,
    .contact-section,
    .ecosystem-section,
    .subpage-hero,
    .content-wrap,
    .contact-area {
        padding-left: 20px;
        padding-right: 20px;
    }

    .back-nav-container {
        padding: 12px 20px 0 !important;
        text-align: left;
        background-color: var(--bg-soft);
    }

    .back-btn {
        margin: 0 !important;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding: 40px 20px 30px;
        text-align: center;
    }

    .hero-section .hero-image {
        order: -1;
        margin-bottom: 0;
    }

    .hero-section .hero-icon-box {
        max-width: 230px;
        height: 230px;
        border-radius: 46% 18% 46% 18%;
    }

    .hero-section .hero-icon-box i {
        font-size: 90px;
    }

    .hero-section .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        margin-bottom: 18px;
        line-height: 1.05;
        letter-spacing: -1.8px;
    }

    .hero-section .hero-content p {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .hero-section .cta-btn {
        padding: 16px 28px;
    }

    .cta-banner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 30px 20px !important;
    }

    .cta-banner .btn-white {
        margin: 0 auto !important;
        align-self: center !important;
        width: fit-content !important;
    }

    .topic-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
    }

    .footer-grid > div {
        max-width: 260px !important;
        text-align: left !important;
    }

    .footer-nav-links {
        padding-left: 0 !important;
        text-align: center;
    }

    .footer-col-label {
        text-align: center !important;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-header {
        height: 75px;
        padding: 0 12px;
    }

    .navbar-collapse {
        top: 75px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-img-box {
        width: 38px;
        height: 38px;
    }

    .logo-img-box img {
        width: 20px;
        height: 20px;
    }

    .subpage-hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .subpage-hero h1 {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .subpage-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero {
        padding: 18px 16px 32px;
    }

    .app-logo-card {
        padding: 16px;
    }

    .app-icon-box {
        width: 110px;
        height: 110px;
    }

    .app-name {
        font-size: 1.3rem;
    }

    .content-wrap {
        padding: 32px 20px;
        margin-bottom: 40px;
    }

    .step-card,
    .benefit-card,
    .topic-card {
        padding: 26px 20px;
    }

    .topic-card {
        max-width: 100%;
        width: 100%;
    }

    .app-logo-box-circle {
        width: 105px;
        height: 105px;
    }

    .go-top-anchor,
    .go-top-btn {
        right: 18px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }

    .contact-area {
        margin: 40px 12px;
        border-radius: 28px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .social-item {
        padding: 18px;
        gap: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================
   13. TEAM PAGE ONLY
   Add class="team-page" to the body
========================= */

.team-page {
    color: var(--text-body);
    background-color: var(--bg-canvas);
}

.team-page .main-wrapper {
    padding: 40px 0 100px;
    background-color: #f8fafc;
}

.team-page .internal-hero {
    padding: 80px 8% 60px;
    text-align: center;
}

.team-page .section-title {
    color: var(--brand-primary) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.team-page .internal-hero p {
    max-width: 800px !important;
    margin: 0 auto !important;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.team-page .group-photo-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 15px;
    background: var(--white);
    border-radius: 32px;
    border: 2px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.team-page .group-photo-wrapper {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.team-page .group-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.team-page .group-photo-wrapper a:hover img {
    transform: scale(1.02);
    opacity: 0.92;
}

.team-page .leader-row,
.team-page .team-grid {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.team-page .leader-row > [class*="col-"],
.team-page .team-grid > [class*="col-"] {
    display: flex;
}

.team-page .topic-card {
    width: 100%;
    min-height: 100%;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.team-page .topic-card:hover {
    border-color: var(--brand-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.team-page .leader-card {
    border: 2px solid var(--brand-primary);
}

.team-page .avatar-box {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #ffffff;
    background-color: #14532d;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.team-page .avatar-box:hover {
    transform: scale(1.05);
    border-color: var(--brand-primary);
}

.team-page .avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-page .member-name {
    font-family: var(--font-main);
    font-weight: 800;
    color: var(--brand-darker);
    margin-bottom: 6px;
    line-height: 1.2;
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.team-page .team-grid .member-name {
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.team-page .member-role {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-page .member-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 25px;
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
}

.team-page .portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 170px;
    padding: 11px 22px;
    background-color: transparent;
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.team-page .portfolio-link:hover {
    background-color: var(--brand-primary);
    color: var(--white);
    text-decoration: none;
}

.team-page .topic-card > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-page .back-nav-container {
    margin-top: 20px; /* small spacing only */
    margin-bottom: 30px;
    padding: 0;
    background: transparent;
}

@media (max-width: 991.98px) {
    .team-page .main-wrapper {
        padding: 30px 0 80px;
    }

    .team-page .internal-hero {
        padding: 60px 20px 40px;
    }

    .team-page .group-photo-container {
        margin-bottom: 50px;
    }

    .team-page .member-name {
        font-size: 1.8rem;
    }

    .team-page .team-grid .member-name {
        font-size: 1.55rem;
    }
}

@media (max-width: 767.98px) {
    .team-page .main-wrapper {
        padding: 24px 0 60px;
    }

    .team-page .internal-hero {
        padding: 50px 20px 35px;
    }

    .team-page .internal-hero p {
        font-size: 1rem;
    }

    .team-page .group-photo-container {
        padding: 10px;
        border-radius: 24px;
        margin-bottom: 40px;
    }

    .team-page .group-photo-wrapper {
        border-radius: 16px;
    }

    .team-page .topic-card {
        padding: 32px 22px;
        border-radius: 24px;
    }

    .team-page .avatar-box {
        width: 96px;
        height: 96px;
        margin-bottom: 18px;
    }

    .team-page .member-name {
        font-size: 1.6rem;
    }

    .team-page .team-grid .member-name {
        font-size: 1.4rem;
    }

    .team-page .member-desc {
        font-size: 0.92rem;
        max-width: 30ch;
    }

    .team-page .portfolio-link {
        min-width: 155px;
        font-size: 0.86rem;
    }
}

@media (max-width: 575.98px) {
    .team-page .topic-card {
        padding: 28px 18px;
    }

    .team-page .member-name {
        font-size: 1.45rem;
    }

    .team-page .team-grid .member-name {
        font-size: 1.28rem;
    }

    .team-page .member-role {
        font-size: 0.72rem;
    }

    .team-page .member-desc {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .team-page .portfolio-link {
        width: 100%;
        max-width: 180px;
    }
}