@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --bg:           #F8FAF8;
    --bg2:          #F2F6F2;
    --surface:      #FFFFFF;
    --brand:        #0A7C3E;
    --brand-mid:    #12A854;
    --brand-light:  #E8F5EE;
    --brand-lighter:#F0FAF4;
    --brand-glow:   rgba(10,124,62,.18);
    --brand-border: rgba(10,124,62,.2);
    --text-head:    #111827;
    --text-body:    #4B5563;
    --text-muted:   #9CA3AF;
    --border:       #E2E8E4;
    --border-mid:   #CBD5CC;
    --radius:       16px;
    --radius-sm:    10px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
    --shadow:       0 4px 16px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
    --shadow-hover: 0 12px 40px rgba(10,124,62,.15), 0 4px 12px rgba(0,0,0,.08);
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body:    'Poppins', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* Subtle dot grid */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: radial-gradient(circle, #C9DDD0 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .45;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: #075C2E; }
img { max-width: 100%; display: block; }

.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-sm { max-width: 820px;  margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ── NAV ── */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(248,250,248,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo {
    display: flex; align-items: center; gap: 9px;
    font-family: var(--font-display); font-size: 20px; font-weight: 800;
    color: var(--text-head);
}
.nav-logo-dot { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
    padding: 7px 15px; border-radius: 8px;
    color: var(--text-body); font-size: 14px; font-weight: 500;
    transition: all .18s;
}
.nav-links a:hover { background: var(--brand-light); color: var(--brand); }
.nav-links a.active { background: var(--brand-light); color: var(--brand); font-weight: 600; }
.nav-cta {
    background: var(--brand) !important; color: #fff !important;
    padding: 8px 20px !important; border-radius: 8px !important;
    font-weight: 600 !important; box-shadow: 0 2px 12px var(--brand-glow);
}
.nav-cta:hover { background: #075C2E !important; color: #fff !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    position: relative; overflow: hidden;
    padding: 100px 0 90px;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(70px); pointer-events: none; opacity: .55;
}
.hero-orb-1 { width: 500px; height: 500px; background: #BBEAD0; top: -180px; right: -80px; }
.hero-orb-2 { width: 350px; height: 350px; background: #D4EDE0; bottom: -100px; left: -60px; }
.hero-orb-3 { width: 250px; height: 250px; background: #E8F5EE; top: 40%; left: 35%; }

.hero-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; min-height: 480px;
}
.hero-content { position: relative; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-light);
    border: 1px solid var(--brand-border);
    color: var(--brand); font-size: 12px; font-weight: 600;
    letter-spacing: .07em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero-eyebrow span { font-weight: 700; }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800; line-height: 1.06;
    color: var(--text-head); letter-spacing: -.03em; margin-bottom: 20px;
}
.hero h1 .grad {
    background: linear-gradient(135deg, #0A7C3E 0%, #12A854 55%, #1DBF63 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 17px; color: var(--text-body); max-width: 520px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CODE WINDOW ── */
.hero-code-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-code-window {
    background: #1A2420;
    border: 1px solid #2D3D35;
    border-radius: 14px; overflow: hidden;
    width: 100%; max-width: 480px;
    box-shadow: 0 24px 64px rgba(10,124,62,.15), 0 8px 24px rgba(0,0,0,.15);
}
.code-titlebar {
    background: #141E1A;
    border-bottom: 1px solid #2D3D35;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 6px;
}
.code-dot { width: 11px; height: 11px; border-radius: 50%; }
.code-body {
    padding: 18px 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px; line-height: 1.75;
    color: #A8C4B0;
    min-height: 300px; max-height: 360px;
    overflow: hidden; white-space: pre;
}
.code-body::after {
    content: '▋'; animation: blink 1s step-end infinite;
    color: #12A854; font-size: 14px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.code-glow {
    position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
    width: 160px; height: 60px;
    background: rgba(10,124,62,.2); filter: blur(30px);
    border-radius: 50%; pointer-events: none;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all .2s; border: none;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 2px 12px var(--brand-glow); }
.btn-primary:hover { background: #075C2E; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px var(--brand-glow); }
.btn-outline { background: var(--surface); color: var(--text-head); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); }
.btn-sm  { padding: 7px 14px; font-size: 13px; }
.btn-lg  { padding: 13px 28px; font-size: 15px; }

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--brand);
    padding: 30px 0;
    position: relative; z-index: 1;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item {}
.stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #fff; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.7); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* ── SECTIONS ── */
.section { padding: 88px 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg2); }
.section-white { background: var(--surface); }

.section-head { text-align: center; margin-bottom: 56px; }
.eyebrow {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 12px;
    padding: 4px 13px;
    background: var(--brand-light);
    border: 1px solid var(--brand-border);
    border-radius: 100px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 42px); font-weight: 800;
    color: var(--text-head); letter-spacing: -.02em; line-height: 1.15; margin-bottom: 12px;
}
.section-head p { font-size: 16px; color: var(--text-body); max-width: 500px; margin: 0 auto; }

/* ── PRODUCT CARDS ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; }

.product-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .25s;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    border-color: var(--card-accent, var(--brand));
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-cover {
    width: 100%; height: 180px;
    position: relative; overflow: hidden; flex-shrink: 0;
}
.card-cover-img { width: 100%; height: 100%; object-fit: cover; }
.card-cover-gradient {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--cover-from,#E8F5EE) 0%, var(--cover-to,#F8FAF8) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.card-cover-gradient::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
    background-size: 20px 20px;
}
.card-cover-orb {
    position: absolute; border-radius: 50%; filter: blur(50px);
    width: 180px; height: 180px; opacity: .25;
    top: -40px; right: -40px;
}
.card-cover-icon {
    position: relative; z-index: 1;
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.6);
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    display: flex; align-items: center; justify-content: center;
}
.card-cover-icon img { width: 34px; height: 34px; object-fit: contain; }

.card-cover-badge {
    position: absolute; top: 12px; right: 12px;
    font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 100px;
    background: rgba(255,243,205,.95); color: #92400E;
    border: 1px solid rgba(180,130,0,.2);
    box-shadow: var(--shadow-sm);
}
.card-cover-badge.active {
    background: rgba(236,253,245,.95); color: #065F46;
    border-color: rgba(10,124,62,.25);
}

.card-accent-bar { height: 3px; background: linear-gradient(90deg, var(--card-accent,var(--brand)), transparent); }

.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text-head); margin-bottom: 4px; }
.card-tagline { font-size: 12px; color: var(--card-accent,var(--brand)); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.card-desc { font-size: 13px; color: var(--text-body); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.card-from { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.card-from strong { font-size: 15px; color: var(--text-head); font-family: var(--font-display); font-weight: 700; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }

/* Badges */
.card-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.card-badge.active { background: #ECFDF5; color: #065F46; border: 1px solid rgba(10,124,62,.25); }
.card-badge:not(.active) { background: #FFF7ED; color: #92400E; border: 1px solid rgba(180,130,0,.2); }

/* ── PAGE HEADER ── */
.page-header {
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 52px 0 44px; position: relative; z-index: 1;
    box-shadow: var(--shadow-sm);
}
.page-header h1 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: var(--text-head); letter-spacing: -.02em; margin-bottom: 8px; }
.page-header p { font-size: 16px; color: var(--text-body); max-width: 540px; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 0 0 14px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 6px; }

/* ── PRODUCT DETAIL ── */
.product-hero {
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 56px 0 48px; position: relative; overflow: hidden; z-index: 1;
}
.product-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, var(--brand-light) 0%, transparent 60%);
}
.product-hero-inner { display: flex; align-items: flex-start; gap: 28px; position: relative; }
.product-hero-icon {
    width: 72px; height: 72px; flex-shrink: 0; border-radius: 18px;
    border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
    background: var(--brand-light); box-shadow: var(--shadow-sm);
}
.product-meta .badge-row { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.product-meta h1 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: var(--text-head); letter-spacing: -.02em; margin-bottom: 10px; }
.product-meta .tagline { font-size: 17px; color: var(--text-body); margin-bottom: 22px; }
.product-meta .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Tabs */
.product-tabs {
    background: var(--surface); border-bottom: 1px solid var(--border);
    position: sticky; top: 64px; z-index: 90; box-shadow: var(--shadow-sm);
}
.tab-list { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tab-link { padding: 14px 22px; font-size: 14px; font-weight: 500; color: var(--text-muted); border-bottom: 2px solid transparent; transition: all .18s; cursor: pointer; display: block; white-space: nowrap; }
.tab-link:hover { color: var(--text-head); }
.tab-link.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 600; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 14px; }
.feature-item {
    display: flex; gap: 12px;
    background: var(--surface); border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); padding: 16px;
    box-shadow: var(--shadow-sm); transition: border-color .2s;
}
.feature-item:hover { border-color: var(--brand-border); }
.feature-check { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature-text strong { display: block; font-size: 14px; color: var(--text-head); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; justify-items: center; align-items: start; max-width: 900px; margin: 0 auto; }
.pricing-card {
    background: var(--surface); border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 30px; position: relative;
    box-shadow: var(--shadow-sm); transition: all .22s; width: 100%;
}
.pricing-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pricing-card.popular { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-glow), var(--shadow); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.pricing-name { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .08em; }
.pricing-price { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--text-head); line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 18px; vertical-align: super; font-weight: 600; }
.pricing-cycle { font-size: 12px; color: var(--text-muted); margin-bottom: 22px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { font-size: 13px; color: var(--text-body); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; }

/* Partners */
.country-selector { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.country-btn { padding: 7px 16px; background: var(--surface); border: 1.5px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text-body); cursor: pointer; transition: all .18s; font-family: var(--font-body); }
.country-btn:hover { border-color: var(--brand); color: var(--brand); }
.country-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.partner-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 20px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm); }
.partner-name { font-size: 15px; font-weight: 600; color: var(--text-head); }
.partner-contact { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.no-partners { text-align: center; padding: 48px; color: var(--text-muted); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.stat-box { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 20px; box-shadow: var(--shadow-sm); }
.stat-box .stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--brand); }
.stat-box .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
.values-list { display: flex; flex-direction: column; gap: 18px; }
.value-item { display: flex; gap: 16px; }
.value-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--brand-light); border: 1px solid var(--brand-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--brand); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--brand-light); border: 1px solid var(--brand-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--text-head); background: var(--surface); transition: border-color .18s; }
.form-control:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-glow); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid rgba(10,124,62,.25); }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid rgba(220,38,38,.25); }

/* CTA Section */
.cta-section {
    position: relative; padding: 100px 0; text-align: center;
    background: var(--brand); overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,.8); }
.cta-section .btn-primary { background: #fff; color: var(--brand); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.cta-section .btn-primary:hover { background: #F0FAF4; color: #075C2E; transform: translateY(-2px); }

/* Footer */
.footer { background: #0D1F14; padding: 64px 0 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-logo { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand-logo span { color: var(--brand-mid); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 16px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); font-size: 14px; transition: color .18s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.35); }

/* Mobile nav toggle */
.nav-mobile-toggle {
    display: none; background: var(--brand-light); border: 1.5px solid var(--brand-border);
    border-radius: 8px; padding: 7px 9px; cursor: pointer; color: var(--brand);
    align-items: center; justify-content: center;
}
.mobile-nav-open .nav-links {
    display: flex !important; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(248,250,248,.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px; gap: 4px; z-index: 99;
    box-shadow: var(--shadow);
}
.mobile-nav-open .nav-links a { display: block; padding: 12px 16px; border-radius: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-code-wrap { display: none; }
    .hero { padding: 72px 0 60px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }
    .product-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .section { padding: 56px 0; }
    .hero h1 { font-size: clamp(32px, 8vw, 48px); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .product-hero-inner { flex-direction: column; gap: 16px; }
    .container, .container-sm { padding: 0 16px; }
    .a-input-grid-2, .a-input-grid-3 { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .pricing-card { max-width: 360px; margin: 0 auto; }
    .card-cover { height: 160px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .tab-list { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .nav-logo { font-size: 17px; }
}

/* Admin responsive */
@media (max-width: 900px) {
    .admin-main { margin-left: 0; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .admin-content { padding: 16px; }
}
