/* ================================================================
  JalanLegal.com - Stylesheet
  Tema: Teal/Cyan pastel modern, glassmorphism, rounded-3xl
  ================================================================ */

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 margin: 0;
 font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
 color: #0f172a;
 background: #f6f9f9;
 -webkit-font-smoothing: antialiased;
 line-height: 1.55;
}
h1,h2,h3,h4 { font-family: 'Cabinet Grotesk', 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
a { color: #0d9488; text-decoration: none; transition: color .2s; }
a:hover { color: #115e59; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: #99f6e4; color: #0f172a; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #99f6e4; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #2dd4bf; }

.skip-link { position: absolute; left: -9999px; top: 0; background: #0f172a; color: white; padding: .5rem 1rem; z-index: 9999; }
.skip-link:focus { left: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.text-balance { text-wrap: balance; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.5rem; border-radius: 99px; font-weight: 600; font-size: .95rem; cursor: pointer; border: none; transition: all .25s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, #14b8a6, #0d9488); color: white; box-shadow: 0 10px 30px rgba(20,184,166,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(20,184,166,.4); color: white; }
.btn-secondary { background: white; color: #0d9488; border: 1.5px solid #ccfbf1; }
.btn-secondary:hover { background: #f0fdfa; border-color: #5eead4; color: #115e59; }
.btn-dark { background: #0f172a; color: white; }
.btn-dark:hover { background: #1e293b; color: white; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #334155; }
.btn-ghost:hover { background: #f1f5f9; color: #0f172a; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.chip { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .9rem; background: #f0fdfa; color: #0d9488; border: 1px solid #ccfbf1; border-radius: 99px; font-size: .75rem; font-weight: 600; }
.chip-dark { background: rgba(255,255,255,.1); color: #5eead4; border-color: rgba(255,255,255,.2); }

/* Glass */
.glass { background: rgba(255,255,255,.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.5); box-shadow: 0 8px 32px rgba(15,23,42,.06); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(255,255,255,.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all .3s; }
.navbar.scrolled { background: rgba(255,255,255,.85); border-bottom-color: #e2e8f0; box-shadow: 0 4px 20px rgba(15,23,42,.04); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.5rem; gap: 1rem; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: .6rem; color: inherit; flex-shrink: 0; white-space: nowrap; }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, #2dd4bf, #0d9488); color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(20,184,166,.35); flex-shrink: 0; }
.brand-text { white-space: nowrap; }
.brand-text strong { display: block; font-family: 'Cabinet Grotesk'; font-size: 1.05rem; color: #0f172a; line-height: 1.1; white-space: nowrap; }
.brand-text small { display: block; font-size: .6rem; color: #64748b; letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; white-space: nowrap; }
.brand-tld { color: #14b8a6; }
.brand-light .brand-text strong { color: white; }
.brand-light .brand-text small { color: #94a3b8; }

.nav-links { display: none; flex: 1; justify-content: center; min-width: 0; }
@media (min-width: 1100px) { .nav-links { display: flex; gap: .1rem; flex-wrap: nowrap; } }
.nav-links a { padding: .5rem .7rem; border-radius: 99px; color: #334155; font-weight: 500; font-size: .85rem; transition: all .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: #f0fdfa; color: #0d9488; }
.nav-actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-actions .btn { display: none; white-space: nowrap; }
@media (min-width: 768px) { .nav-actions .btn { display: inline-flex; } }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: transparent; border: 0; padding: .5rem; cursor: pointer; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #0f172a; border-radius: 2px; transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; gap: .5rem; padding: 1rem 1.5rem 1.5rem; background: rgba(255,255,255,.95); backdrop-filter: blur(20px); border-top: 1px solid #e2e8f0; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: .8rem 1rem; border-radius: 12px; color: #334155; font-weight: 500; }
.nav-mobile a:hover { background: #f0fdfa; }

/* ===== HERO / CAROUSEL ===== */
.hero { position: relative; padding: 9rem 1.5rem 5rem; overflow: hidden; background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 50%, #e0f2fe 100%); }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(45,212,191,.3), transparent 70%); }
.hero::after { content: ''; position: absolute; bottom: -50px; left: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(103,232,249,.3), transparent 70%); }
.hero-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; position: relative; max-width: 1200px; margin: 0 auto; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero-title { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.05; white-space: pre-line; }
.hero-sub { font-size: 1.1rem; color: #475569; max-width: 580px; margin-top: 1.25rem; line-height: 1.65; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-image-wrap { position: relative; }
.hero-image-wrap::before { content: ''; position: absolute; inset: -20px; background: linear-gradient(135deg, rgba(45,212,191,.3), rgba(103,232,249,.3)); border-radius: 40px; filter: blur(40px); }
.hero-image { position: relative; border-radius: 32px; box-shadow: 0 30px 60px rgba(15,23,42,.2); animation: float 8s ease-in-out infinite; }
.hero-float-card { position: absolute; bottom: -20px; left: -20px; background: rgba(255,255,255,.85); backdrop-filter: blur(20px); padding: 1rem 1.5rem; border-radius: 20px; box-shadow: 0 12px 30px rgba(15,23,42,.08); }
.hero-float-card span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: #0d9488; font-weight: 700; }
.hero-float-card strong { display: block; font-family: 'Cabinet Grotesk'; font-size: 2rem; font-weight: 800; }
.hero-float-card em { display: block; font-style: normal; font-size: .8rem; color: #64748b; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.hero-dots { display: flex; gap: .5rem; margin-top: 2rem; }
.hero-dots button { background: #cbd5e1; height: 6px; width: 16px; border: 0; border-radius: 99px; cursor: pointer; transition: all .3s; }
.hero-dots button.active { background: #0d9488; width: 40px; }

/* ===== STATS ===== */
.stats-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card { padding: 2rem; border-radius: 24px; position: relative; overflow: hidden; }
.stat-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, #2dd4bf, #0d9488); color: white; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; box-shadow: 0 8px 24px rgba(20,184,166,.25); }
.stat-num { font-family: 'Cabinet Grotesk'; font-size: 3rem; font-weight: 800; line-height: 1; color: #0f172a; }
.stat-label { color: #64748b; margin-top: .5rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ===== SERVICES ===== */
.service-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.service-card { background: white; border-radius: 24px; padding: 1.75rem; border: 1px solid #f1f5f9; transition: all .3s; }
.service-card:hover { border-color: #5eead4; transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20,184,166,.1); }
.service-icon { width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0d9488; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 1rem; transition: all .3s; overflow: hidden; }
.service-icon.service-image { width: 100%; height: auto; aspect-ratio: 4/5; border-radius: 18px; background: #ecfeff; display:flex; align-items:center; justify-content:center; }
.service-icon.service-image img { width: 100%; height: 100%; object-fit: contain; background:#ecfeff; }
.service-icon.service-image.is-fallback::after { content: '⚖'; font-size: 34px; color: #0d9488; }
.service-card:hover .service-icon { background: linear-gradient(135deg, #2dd4bf, #0d9488); color: white; }
.service-card h3 { font-size: 1.25rem; margin: 0 0 .35rem; }
.service-card p { color: #64748b; font-size: .92rem; margin: 0 0 1rem; line-height: 1.5; }
.service-detail-visual { width: 100%; height: auto; aspect-ratio: 4/5; max-height: 560px; border-radius: 24px; margin: 0; display:flex; align-items:center; justify-content:center; overflow:hidden; background:#f8fafc; }
.service-detail-visual:not(.service-image) { background: linear-gradient(135deg, #ccfbf1, #e0f2fe); }
.service-detail-visual img { width: 100%; height: 100%; object-fit: contain; }
.service-detail-visual svg { width: 88px; height: 88px; }
@media (max-width: 820px) { .service-detail-hero { grid-template-columns: 1fr !important; } .service-detail-visual { aspect-ratio: 4/5; height: auto; } }
.service-price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 1rem; }
.service-price small { font-size: .7rem; color: #94a3b8; text-transform: uppercase; }
.service-price strong { font-family: 'Cabinet Grotesk'; font-size: 1.6rem; color: #0d9488; }
.service-feats { list-style: none; padding: 0; margin: 0 0 1.25rem; font-size: .85rem; color: #475569; }
.service-feats li { padding: .25rem 0; display: flex; align-items: center; gap: .4rem; }
.service-feats li::before { content: ''; color: #14b8a6; font-weight: 700; }

/* ===== TIER CARDS ===== */
.tier-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tier-card { background: white; border: 2px solid #e2e8f0; border-radius: 24px; padding: 1.75rem; position: relative; display: flex; flex-direction: column; }
.tier-card.popular { border-color: #14b8a6; box-shadow: 0 20px 40px rgba(20,184,166,.12); background: linear-gradient(180deg, rgba(240,253,250,.5) 0%, white 30%); }
.tier-badge { position: absolute; top: -14px; left: 1.5rem; background: linear-gradient(135deg, #14b8a6, #0d9488); color: white; padding: .35rem .9rem; border-radius: 99px; font-size: .7rem; font-weight: 700; box-shadow: 0 6px 16px rgba(20,184,166,.3); }
.tier-name { font-family: 'Cabinet Grotesk'; font-size: 1.4rem; font-weight: 700; }
.tier-price { font-family: 'Cabinet Grotesk'; font-size: 2.2rem; font-weight: 800; color: #0d9488; line-height: 1; margin: .5rem 0; }
.tier-price-original { text-decoration: line-through; color: #94a3b8; font-size: .9rem; font-family: 'Plus Jakarta Sans'; font-weight: 500; }
.tier-allin { font-size: .7rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.tier-features { list-style: none; padding: 1rem 0; margin: 1rem 0 1.5rem; border-top: 1px solid #f1f5f9; flex: 1; }
.tier-features li { display: flex; align-items: start; gap: .5rem; padding: .35rem 0; font-size: .9rem; color: #334155; }
.tier-features li.no { color: #94a3b8; text-decoration: line-through; }
.tier-check { color: #14b8a6; flex-shrink: 0; }
.tier-x { color: #cbd5e1; flex-shrink: 0; }

/* ===== PROMO SECTION ===== */
.promo-section { background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%); color: white; }
.promo-section h2 { color: white; }
.promo-section .lead { color: #cbd5e1; }
.promo-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 2.5rem; }
.promo-card { background: rgba(255,255,255,.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 1.75rem; transition: all .3s; }
.promo-card:hover { border-color: rgba(252,211,77,.4); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.promo-discount { font-family: 'Cabinet Grotesk'; font-size: 3rem; font-weight: 800; color: #fcd34d; line-height: 1; }
.promo-card h3 { color: white; margin-top: 1rem; }
.promo-card p { color: #cbd5e1; font-size: .9rem; }
.promo-card a { color: #fcd34d; font-weight: 600; }

/* ===== CALCULATOR ===== */
.calc-card { background: rgba(255,255,255,.7); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.5); border-radius: 32px; padding: 2rem; box-shadow: 0 20px 50px rgba(15,23,42,.08); }
@media (min-width: 768px) { .calc-card { padding: 3rem; } }
.calc-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .calc-row { grid-template-columns: 1fr 1fr; } }
.calc-field label { display: flex; justify-content: space-between; font-weight: 600; color: #334155; margin-bottom: .5rem; font-size: .9rem; }
.calc-field label span:last-child { color: #0d9488; font-weight: 700; }
.calc-slider { width: 100%; height: 6px; border-radius: 99px; background: #e2e8f0; outline: 0; -webkit-appearance: none; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 99px; background: white; border: 3px solid #14b8a6; cursor: pointer; box-shadow: 0 6px 16px rgba(20,184,166,.4); }
.calc-slider::-moz-range-thumb { width: 26px; height: 26px; border-radius: 99px; background: white; border: 3px solid #14b8a6; cursor: pointer; }
.calc-toggle { display: flex; gap: .5rem; }
.calc-toggle button { flex: 1; padding: .55rem; border: 1.5px solid #e2e8f0; border-radius: 99px; background: white; font-weight: 600; cursor: pointer; font-size: .85rem; transition: all .2s; }
.calc-toggle button.active { background: #14b8a6; color: white; border-color: #14b8a6; }
.calc-result { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; padding: 1.5rem; background: linear-gradient(135deg, #f0fdfa, #ecfeff); border: 1px solid #ccfbf1; border-radius: 24px; }
.calc-result-icon { width: 56px; height: 56px; border-radius: 16px; background: white; display: flex; align-items: center; justify-content: center; color: #0d9488; font-size: 28px; box-shadow: 0 6px 16px rgba(15,23,42,.06); }
.calc-result-body { flex: 1; min-width: 200px; }
.calc-result-body small { display: block; text-transform: uppercase; font-size: .7rem; font-weight: 700; color: #0d9488; letter-spacing: .08em; }
.calc-result-body strong { display: block; font-family: 'Cabinet Grotesk'; font-size: 1.8rem; color: #0f172a; }
.calc-result-body em { font-style: normal; color: #475569; font-size: .9rem; }

/* ===== NEWS ===== */
.news-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.news-card { background: white; border-radius: 24px; overflow: hidden; border: 1px solid #f1f5f9; transition: all .3s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(15,23,42,.08); }
.news-card-img { display: flex; align-items:center; justify-content:center; aspect-ratio: 4/5; overflow: hidden; background: #f1f5f9; }
.news-card-img img { width: 100% !important; height: 100% !important; object-fit: contain; background:#f1f5f9; transition: transform .5s; max-width: none; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { display: flex !important; flex-direction: column; gap: .4rem; }
.news-card-body h3, .news-card-body .news-excerpt, .news-card-body .news-meta, .news-card-body .news-tags, .news-card-body .share-btns { display: flex; }
.news-card-body h3 { display: block; }
.news-card-body .news-excerpt { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-body { padding: 1.5rem; }
.news-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .75rem; }
.news-card h3 { font-size: 1.2rem; }
.news-card h3 a { color: #0f172a; }
.news-card h3 a:hover { color: #0d9488; }
.news-meta { display: flex; gap: 1rem; font-size: .8rem; color: #94a3b8; margin-top: 1rem; align-items: center; }
.news-meta .ml-auto { margin-left: auto; }

.news-detail { max-width: 760px; margin: 0 auto; }
.news-detail h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
.news-body { font-size: 1.1rem; color: #334155; line-height: 1.8; white-space: pre-line; margin-top: 2rem; }
.news-actions { display: flex; gap: .5rem; padding: 1.5rem 0; margin-top: 2.5rem; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; align-items: center; flex-wrap: wrap; }
.comments-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.comment-card { background: white; border: 1px solid #f1f5f9; border-radius: 16px; padding: 1rem 1.25rem; }
.comment-card strong { font-size: .9rem; }
.comment-card p { margin: .35rem 0 0; color: #475569; font-size: .92rem; }

/* ===== FORMS ===== */
.form-card { background: white; border-radius: 24px; padding: 2rem; box-shadow: 0 8px 30px rgba(15,23,42,.05); border: 1px solid #f1f5f9; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-bottom: 1rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
label.field-label { display: block; font-weight: 600; font-size: .9rem; color: #334155; margin-bottom: .35rem; }
input.field, textarea.field, select.field { width: 100%; padding: .8rem 1rem; border-radius: 14px; border: 1.5px solid #e2e8f0; background: white; font-family: inherit; font-size: .95rem; transition: all .2s; }
input.field:focus, textarea.field:focus, select.field:focus { outline: 0; border-color: #14b8a6; box-shadow: 0 0 0 4px #ccfbf1; }
.alert { padding: .8rem 1.25rem; border-radius: 12px; font-size: .9rem; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }

/* ===== CHECKOUT ===== */
.checkout-wrap { background: linear-gradient(135deg, #f6f9f9, #f0fdfa); min-height: 100vh; padding: 3rem 1.5rem; }
.checkout-card { max-width: 760px; margin: 0 auto; }
.checkout-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.stepper { display: flex; align-items: center; padding: 1rem 1.5rem; background: white; border: 1px solid #f1f5f9; border-radius: 20px; margin-bottom: 2rem; }
.stepper-step { flex: 1; display: flex; align-items: center; }
.stepper-circle { width: 36px; height: 36px; border-radius: 99px; background: #f1f5f9; color: #94a3b8; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.stepper-step.active .stepper-circle { background: #ccfbf1; color: #0d9488; box-shadow: 0 0 0 4px #f0fdfa; }
.stepper-step.done .stepper-circle { background: #0d9488; color: white; }
.stepper-label { margin-left: .5rem; font-size: .8rem; font-weight: 600; color: #94a3b8; white-space: nowrap; }
.stepper-step.active .stepper-label, .stepper-step.done .stepper-label { color: #0d9488; }
.stepper-line { flex: 1; height: 2px; background: #e2e8f0; margin: 0 .5rem; }
.stepper-step.done + .stepper-step .stepper-line, .stepper-line.done { background: #0d9488; }

.method-grid { display: grid; gap: .75rem; grid-template-columns: repeat(3, 1fr); margin-bottom: 1.5rem; }
.method-card { padding: 1rem; border: 2px solid #e2e8f0; border-radius: 16px; background: white; cursor: pointer; text-align: center; transition: all .2s; }
.method-card.active { border-color: #14b8a6; background: #f0fdfa; }
.method-card svg { color: #94a3b8; }
.method-card.active svg { color: #0d9488; }
.method-card strong { display: block; margin-top: .5rem; font-size: .85rem; }

.bank-grid { display: grid; gap: .5rem; grid-template-columns: repeat(4, 1fr); margin-bottom: 1rem; }
.bank-btn { padding: .75rem; border: 2px solid #e2e8f0; border-radius: 14px; background: white; font-weight: 700; cursor: pointer; transition: all .2s; }
.bank-btn.active { border-color: #14b8a6; background: #f0fdfa; color: #0d9488; }
.bank-info { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 1.25rem; }
.bank-info small { font-size: .7rem; text-transform: uppercase; color: #64748b; letter-spacing: .08em; }
.bank-info .va-num { font-family: monospace; font-size: 1.5rem; font-weight: 800; letter-spacing: 2px; }
.copy-btn { background: transparent; border: 0; padding: .35rem; cursor: pointer; color: #64748b; }
.copy-btn:hover { color: #0d9488; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: #cbd5e1; padding: 4rem 0 2rem; margin-top: 5rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { color: white; font-size: 1rem; margin-bottom: 1rem; font-family: 'Plus Jakarta Sans'; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: .35rem 0; font-size: .9rem; }
.footer ul a, .footer a { color: #94a3b8; }
.footer ul a:hover, .footer a:hover { color: #2dd4bf; }
.footer-brand p { color: #94a3b8; font-size: .9rem; line-height: 1.65; }
.footer-addr { font-size: .85rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 1.5rem; margin-top: 3rem; text-align: center; font-size: .8rem; color: #64748b; }

/* ===== CHAT FAB ===== */
.chat-fab { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 99px; background: linear-gradient(135deg, #2dd4bf, #0d9488); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 49; box-shadow: 0 12px 32px rgba(20,184,166,.45); transition: transform .25s; }
.chat-fab:hover { transform: scale(1.1); }
.chat-fab-pulse { position: absolute; inset: 0; border-radius: 99px; background: rgba(45,212,191,.4); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0; } }

.chat-window { position: fixed; bottom: 95px; right: 24px; width: calc(100vw - 48px); max-width: 380px; height: 70vh; max-height: 580px; background: white; border-radius: 24px; box-shadow: 0 30px 80px rgba(15,23,42,.25); display: none; flex-direction: column; overflow: hidden; z-index: 50; border: 2px solid #ccfbf1; }
.chat-window.open { display: flex; }
.chat-header { background: linear-gradient(135deg, #14b8a6, #06b6d4); color: white; padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
.chat-avatar { width: 40px; height: 40px; border-radius: 99px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.chat-header strong { display: block; font-size: 1rem; }
.chat-header small { display: block; opacity: .8; font-size: .75rem; }
.chat-close { margin-left: auto; background: transparent; border: 0; color: white; font-size: 24px; cursor: pointer; line-height: 1; padding: 0 .5rem; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; background: #f8fafc; display: flex; flex-direction: column; gap: .6rem; }
.chat-msg { display: flex; gap: .5rem; max-width: 85%; }
.chat-msg.user { align-self: flex-end; }
.chat-msg.assistant, .chat-msg.admin { align-self: flex-start; }
.chat-bubble { padding: .6rem .9rem; border-radius: 16px; font-size: .9rem; line-height: 1.5; white-space: pre-wrap; }
.chat-msg.user .chat-bubble { background: #14b8a6; color: white; border-bottom-right-radius: 4px; }
.chat-msg.assistant .chat-bubble { background: white; border: 1px solid #e2e8f0; border-bottom-left-radius: 4px; }
.chat-msg.admin .chat-bubble { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.chat-typing { display: flex; gap: .25rem; padding: .8rem; background: white; border: 1px solid #e2e8f0; border-radius: 16px; align-self: flex-start; }
.chat-typing span { width: 8px; height: 8px; border-radius: 99px; background: #14b8a6; animation: bounce 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-6px); opacity: 1; } }
.chat-footer { padding: .75rem; background: white; border-top: 1px solid #e2e8f0; }
.chat-handoff { display: block; width: 100%; background: transparent; border: 0; color: #0d9488; font-weight: 600; font-size: .8rem; cursor: pointer; margin-bottom: .5rem; padding: .35rem; }
.chat-handoff:hover { text-decoration: underline; }
.chat-form { display: flex; gap: .5rem; }
.chat-form input { flex: 1; padding: .65rem 1rem; border-radius: 99px; border: 1px solid #e2e8f0; outline: 0; font-family: inherit; font-size: .9rem; }
.chat-form input:focus { border-color: #14b8a6; }
.chat-form button { width: 42px; height: 42px; border-radius: 99px; background: #14b8a6; color: white; border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.chat-form button:hover { background: #0d9488; }

/* ===== PROMO POPUP ===== */
.promo-popup { position: fixed; bottom: 24px; left: 24px; max-width: 360px; background: white; border-radius: 24px; box-shadow: 0 25px 60px rgba(15,23,42,.18); padding: 1.5rem 1.5rem 1.5rem 5rem; z-index: 48; border: 2px solid #fcd34d; transform: translateY(120%); transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
.promo-popup.show { transform: translateY(0); }
.promo-popup-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, #fcd34d, #f59e0b); display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 8px 20px rgba(245,158,11,.35); }
.promo-popup h4 { font-size: 1.05rem; margin: 0 0 .35rem; color: #92400e; }
.promo-popup p { font-size: .85rem; color: #475569; margin: 0 0 .75rem; line-height: 1.45; }
.promo-popup-close { position: absolute; top: .5rem; right: .75rem; background: transparent; border: 0; font-size: 24px; line-height: 1; color: #94a3b8; cursor: pointer; padding: .25rem .5rem; }
.promo-popup-close:hover { color: #0f172a; }
@media (max-width: 640px) { .promo-popup { left: 12px; right: 12px; max-width: none; bottom: 95px; } }

/* ===== ADMIN ===== */
.admin-wrap { display: flex; min-height: 100vh; background: #f6f9f9; }
.admin-side { width: 260px; background: white; border-right: 1px solid #e2e8f0; display: flex; flex-direction: column; }
.admin-side-head { padding: 1.25rem; border-bottom: 1px solid #f1f5f9; }
.admin-nav { padding: 1rem; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: .65rem; padding: .65rem 1rem; border-radius: 14px; color: #334155; font-weight: 500; font-size: .9rem; margin-bottom: .25rem; }
.admin-nav a:hover { background: #f8fafc; }
.admin-nav a.active { background: #f0fdfa; color: #0d9488; }
.admin-side-foot { padding: 1rem; border-top: 1px solid #f1f5f9; }
.admin-main { flex: 1; padding: 2rem; overflow-x: auto; }
.admin-stats { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.admin-stat { background: white; border-radius: 18px; padding: 1.25rem; border: 1px solid #f1f5f9; }
.admin-stat-color { width: 36px; height: 36px; border-radius: 12px; margin-bottom: .5rem; }
.admin-stat-num { font-family: 'Cabinet Grotesk'; font-size: 2rem; font-weight: 800; }
.admin-stat-label { font-size: .8rem; color: #64748b; }
.admin-table { width: 100%; border-collapse: collapse; background: white; border-radius: 18px; overflow: hidden; }
.admin-table th, .admin-table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid #f1f5f9; font-size: .9rem; }
.admin-table th { background: #f8fafc; font-weight: 600; color: #475569; text-transform: uppercase; font-size: .72rem; letter-spacing: .05em; }
.admin-table tr:hover { background: #f8fafc; }
.status-badge { display: inline-block; padding: .25rem .65rem; border-radius: 99px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-processing { background: #dbeafe; color: #1e40af; }
.status-paid { background: #d1fae5; color: #065f46; }
.status-completed { background: #ccfbf1; color: #115e59; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: linear-gradient(135deg, #f0fdfa, #f6f9f9); }
.login-card { width: 100%; max-width: 420px; background: white; border-radius: 24px; padding: 2rem; box-shadow: 0 20px 50px rgba(15,23,42,.08); }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; }
.flex { display: flex; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.lead { font-size: 1.1rem; color: #475569; }
.hidden { display: none; }
.muted { color: #64748b; }
.small { font-size: .85rem; }


/* ================================================================
  v2026.05.20 — Mobile fix, lang switcher, full-screen popup, USP,
  partner logos, trust badges, share buttons, pagination, comments
  Color palette accents: #349265 (green), #233492 (indigo)
  ================================================================ */

:root {
 --brand-green: #349265;
 --brand-green-dark: #277150;
 --brand-green-light: #e8f5ee;
 --brand-indigo: #233492;
 --brand-indigo-dark: #1a2670;
 --brand-indigo-light: #ebedf8;
 --brand-gradient: linear-gradient(135deg, #349265 0%, #14b8a6 50%, #233492 100%);
 --brand-gradient-soft: linear-gradient(135deg, #e8f5ee 0%, #f0fdfa 50%, #ebedf8 100%);
}

/* === GLOBAL MOBILE FIX (overflow horizontal) === */
html, body { overflow-x: hidden; max-width: 100vw; }
body { word-wrap: break-word; overflow-wrap: break-word; }
.container { width: 100%; box-sizing: border-box; }
img, video, iframe { max-width: 100%; }
table { max-width: 100%; }
.admin-main { overflow-x: auto; }
.hero { padding-left: 1rem; padding-right: 1rem; }
.hero::before, .hero::after { pointer-events: none; }
.hero-image { width: 100%; height: auto; }
.hero-float-card { left: 0; max-width: calc(100% - 1rem); }
@media (max-width: 480px) {
 .hero { padding-top: 7rem; padding-bottom: 3rem; }
 h1 { font-size: 1.85rem !important; }
 h2 { font-size: 1.4rem !important; }
 .hero-title { font-size: 1.85rem !important; }
 .hero-image { border-radius: 20px; }
 .hero-float-card { padding: .65rem 1rem; left: 0; bottom: -10px; }
 .hero-float-card strong { font-size: 1.4rem; }
 .stat-card { padding: 1.25rem; }
 .stat-num { font-size: 2rem; }
 .news-card-body, .service-card { padding: 1.25rem; }
 .footer-grid { gap: 1.5rem; }
 .footer { padding: 3rem 0 1.5rem; }
 .container { padding-left: 1rem; padding-right: 1rem; }
 .section { padding: 2.5rem 0; }
 .btn { font-size: .88rem; padding: .75rem 1.2rem; }
 .method-grid { grid-template-columns: 1fr; }
 .bank-grid { grid-template-columns: repeat(2, 1fr); }
 .nav-wrap { padding: .75rem 1rem; gap: .5rem; }
 .brand-text strong { font-size: 1rem; }
 .brand-text small { font-size: .55rem; }
}

/* === LANGUAGE SWITCHER === */
.lang-switcher { position: relative; }
.lang-current { background: rgba(255,255,255,.7); border: 1.5px solid #e2e8f0; padding: .5rem .8rem; border-radius: 99px; font-weight: 600; font-size: .8rem; cursor: pointer; color: #334155; display: inline-flex; align-items: center; gap: .25rem; transition: all .2s; }
.lang-current:hover { border-color: var(--brand-green); color: var(--brand-green); }
.lang-menu { position: absolute; top: calc(100% + .5rem); right: 0; background: white; border: 1px solid #e2e8f0; border-radius: 14px; padding: .35rem; min-width: 130px; box-shadow: 0 12px 30px rgba(15,23,42,.12); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: all .2s; z-index: 60; }
.lang-switcher.open .lang-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-menu a { display: block; padding: .55rem .75rem; border-radius: 10px; font-size: .85rem; color: #334155; font-weight: 500; text-decoration: none; }
.lang-menu a:hover { background: var(--brand-green-light); color: var(--brand-green-dark); }
.lang-menu a.active { background: var(--brand-green); color: white; }
.nav-mobile-lang { display: flex; gap: .35rem; padding: .5rem 0; }
.nav-mobile-lang a { flex: 1; text-align: center; padding: .55rem .35rem; border-radius: 10px; background: #f8fafc; font-size: .8rem; font-weight: 600; }
.nav-mobile-lang a.active { background: var(--brand-green); color: white; }
@media (max-width: 480px) {
 .nav-actions .lang-current { padding: .4rem .6rem; font-size: .72rem; }
 .nav-cta-desktop { display: none !important; }
}

/* === FULL-SCREEN PROMO MODAL === */
.promo-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.promo-modal.show { display: flex; animation: modalIn .35s ease-out; }
.promo-modal-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); cursor: pointer; }
.promo-modal-content { position: relative; background: white; border-radius: 28px; padding: 2.5rem 2rem; max-width: 440px; width: 100%; text-align: center; box-shadow: 0 40px 80px rgba(15,23,42,.4); animation: popIn .45s cubic-bezier(.34,1.56,.64,1); }
.promo-modal-close { position: absolute; top: 1rem; right: 1rem; background: #f1f5f9; border: 0; width: 36px; height: 36px; border-radius: 99px; font-size: 22px; cursor: pointer; color: #64748b; transition: all .2s; }
.promo-modal-close:hover { background: #ef4444; color: white; transform: rotate(90deg); }
.promo-modal-icon { font-size: 56px; margin-bottom: 1rem; animation: bouncePromo 1.5s ease-in-out infinite; }
.promo-modal-content h2 { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.8rem; margin: .5rem 0 .8rem; }
.promo-modal-content p { color: #475569; font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.6; }
.promo-modal-content .btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.promo-modal-later { display: block; margin: 1rem auto 0; background: transparent; border: 0; color: #94a3b8; cursor: pointer; font-size: .85rem; padding: .5rem; }
.promo-modal-later:hover { color: #475569; text-decoration: underline; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { 0% { opacity: 0; transform: scale(.7) translateY(40px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes bouncePromo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 480px) {
 .promo-modal-content { padding: 2rem 1.25rem; border-radius: 22px; }
 .promo-modal-content h2 { font-size: 1.4rem; }
 .promo-modal-content p { font-size: .9rem; }
}

/* === USP / KELEBIHAN SECTION === */
.usp-section { background: var(--brand-gradient-soft); padding: 5rem 0; }
.usp-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 2.5rem; }
.usp-card { background: white; border-radius: 22px; padding: 1.75rem; border: 1px solid #e2e8f0; transition: all .3s; position: relative; overflow: hidden; }
.usp-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(35,52,146,.12); border-color: var(--brand-green); }
.usp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--brand-gradient); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.usp-card:hover::before { transform: scaleX(1); }
.usp-icon { width: 56px; height: 56px; border-radius: 18px; background: var(--brand-gradient); color: white; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 1.25rem; box-shadow: 0 12px 28px rgba(52,146,101,.3); }
.usp-card h3 { font-size: 1.15rem; margin: 0 0 .5rem; color: #0f172a; }
.usp-card p { color: #475569; font-size: .92rem; line-height: 1.6; margin: 0; }

/* === BUNDLING / JALAN AGENCY === */
.bundling-section { background: linear-gradient(135deg, #233492 0%, #349265 100%); color: white; padding: 5rem 0; position: relative; overflow: hidden; }
.bundling-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,255,255,.15), transparent 70%); }
.bundling-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; position: relative; z-index: 1; }
@media (min-width: 900px) { .bundling-grid { grid-template-columns: 1fr 1fr; } }
.bundling-info h2 { color: white; font-size: 2.2rem; }
.bundling-info .chip { background: rgba(255,255,255,.15); color: white; border-color: rgba(255,255,255,.2); }
.bundling-info p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7; }
.bundling-card { background: white; color: #0f172a; border-radius: 28px; padding: 2rem; box-shadow: 0 30px 60px rgba(0,0,0,.25); }
.bundling-price { display: flex; align-items: baseline; gap: .5rem; margin: 1rem 0; flex-wrap: wrap; }
.bundling-price strong { font-family: 'Cabinet Grotesk'; font-size: 2.5rem; font-weight: 800; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bundling-price small { color: #94a3b8; text-decoration: line-through; font-size: 1.05rem; }
.bundling-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.bundling-list li { padding: .55rem 0; display: flex; align-items: start; gap: .65rem; font-size: .95rem; color: #334155; border-bottom: 1px dashed #e2e8f0; }
.bundling-list li::before { content: ''; color: var(--brand-green); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }

/* === TRUST BADGES === */
.trust-section { background: #f8fafc; padding: 3.5rem 0; border-top: 1px solid #e2e8f0; }
.trust-badges-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.trust-badge { display: flex; align-items: center; gap: .65rem; padding: .8rem 1.25rem; background: white; border: 1px solid #e2e8f0; border-radius: 16px; min-width: 160px; transition: all .25s; }
.trust-badge:hover { border-color: var(--brand-green); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(52,146,101,.1); }
.trust-badge-icon { font-size: 28px; flex-shrink: 0; }
.trust-badge strong { display: block; font-size: .85rem; color: #0f172a; }
.trust-badge small { color: #64748b; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }

.partner-title { text-align: center; font-size: 1.4rem; }
.partner-lead { text-align: center; max-width: 600px; margin: 0 auto 2rem; }
.partner-logos { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .75rem; }
.partner-logo-tile { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1rem .5rem; text-align: center; font-weight: 700; color: #475569; font-size: .85rem; transition: all .25s; font-family: 'Cabinet Grotesk', sans-serif; letter-spacing: -.02em; }
.partner-logo-tile:hover { border-color: var(--brand-green); color: var(--brand-green); transform: scale(1.05); }

/* === SHARE BUTTONS === */
.share-buttons { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.share-buttons.share-compact { gap: .3rem; margin-top: .75rem; }
.share-btn { display: inline-flex; align-items: center; gap: .25rem; padding: .4rem .65rem; border-radius: 99px; font-size: .7rem; font-weight: 600; text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: all .2s; background: #f1f5f9; color: #475569; }
.share-btn.btn-sm { padding: .3rem .55rem; font-size: .65rem; }
.share-btn:hover { transform: translateY(-1px); }
.share-btn.share-wa { background: #25d366; color: white; }
.share-btn.share-wa:hover { background: #128c7e; color: white; }
.share-btn.share-fb { background: #1877f2; color: white; }
.share-btn.share-fb:hover { background: #0c5dc7; color: white; }
.share-btn.share-tw { background: #0f172a; color: white; }
.share-btn.share-tw:hover { background: #1e293b; color: white; }
.share-btn.share-tg { background: #0088cc; color: white; }
.share-btn.share-tg:hover { background: #006ba6; color: white; }
.share-btn.share-copy { background: #e2e8f0; color: #334155; border: 0; }
.share-btn.share-copy:hover { background: #cbd5e1; }

/* === PAGINATION === */
.pagination { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; margin: 2.5rem 0 1rem; }
.page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 .8rem; border: 1.5px solid #e2e8f0; border-radius: 10px; background: white; color: #475569; font-weight: 600; font-size: .85rem; text-decoration: none; transition: all .2s; }
.page-link:hover { border-color: var(--brand-green); color: var(--brand-green); background: var(--brand-green-light); }
.page-link.active { background: var(--brand-gradient); color: white; border-color: transparent; box-shadow: 0 8px 20px rgba(52,146,101,.3); }
.page-link.disabled { background: #f8fafc; color: #cbd5e1; cursor: not-allowed; pointer-events: none; }

/* === COMMENTS === */
.comment-card { display: flex; gap: .9rem; align-items: start; background: white; border: 1px solid #f1f5f9; border-radius: 16px; padding: 1rem 1.25rem; }
.comment-avatar { width: 40px; height: 40px; border-radius: 99px; background: var(--brand-gradient); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-size: 1.1rem; font-family: 'Cabinet Grotesk', sans-serif; }
.comment-body { flex: 1; min-width: 0; }
.comment-body strong { font-size: .9rem; }
.comment-body p { margin: .35rem 0 0; color: #475569; font-size: .92rem; word-wrap: break-word; }
.like-btn.liked { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }
.like-btn.liked .heart { animation: heartPulse .5s ease-out; }
@keyframes heartPulse { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }
.news-excerpt { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* === TENDER PROMO BADGE & PRICING === */
.tier-discount-badge { display: inline-block; background: linear-gradient(135deg, #f59e0b, #dc2626); color: white; padding: .35rem .8rem; border-radius: 99px; font-size: .72rem; font-weight: 700; box-shadow: 0 6px 16px rgba(220,38,38,.3); margin-bottom: .5rem; }

/* === COUNTRY COVERAGE === */
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: .6rem; margin-top: 1.5rem; }
.coverage-chip { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: .65rem .5rem; text-align: center; font-size: .8rem; font-weight: 600; color: #334155; transition: all .2s; }
.coverage-chip:hover { border-color: var(--brand-green); color: var(--brand-green); transform: scale(1.05); }
.coverage-chip .flag { font-size: 1.5rem; display: block; margin-bottom: .25rem; }

/* === FOOTER SOCIAL & CONTACT BLOCK === */
.footer-contact-block { margin-top: 1.25rem; }
.footer-contact-block p { margin: .35rem 0; font-size: .88rem; }
.footer-social { display: flex; gap: .65rem; margin-top: 1.25rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 12px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: #94a3b8; transition: all .2s; }
.footer-social a:hover { background: var(--brand-green); color: white; }

/* === ABOUT PAGE === */
.about-hero { background: var(--brand-gradient-soft); padding: 8rem 0 5rem; }
.about-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: start; margin-top: 3rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.vm-card { background: white; border-radius: 24px; padding: 2rem; border: 1px solid #f1f5f9; box-shadow: 0 8px 30px rgba(15,23,42,.05); }
.vm-card h3 { display: flex; align-items: center; gap: .5rem; }
.vm-card-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--brand-gradient); color: white; display: flex; align-items: center; justify-content: center; font-size: 22px; }

/* === ADMIN RESPONSIVE === */
@media (max-width: 900px) {
 .admin-wrap { flex-direction: column; }
 .admin-side { width: 100%; flex-direction: row; align-items: center; padding: .5rem; overflow-x: auto; }
 .admin-side-head, .admin-side-foot { display: none; }
 .admin-stat-num { font-size: 1.4rem; }
 .order-status-grid { grid-template-columns: 1fr !important; }
}

/* === COOKIE BANNER — FORCED MODAL (v9 2026-05-21) === */
.cookie-banner { position: fixed; inset: 0; z-index: 9000; background: rgba(15,23,42,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; transition: opacity .25s ease; }
.cookie-banner.show { display: flex; opacity: 1; }
.cookie-banner-inner { background: white; border-radius: 22px; box-shadow: 0 30px 80px rgba(15,23,42,.4); padding: 1.75rem; max-width: 520px; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; animation: popIn .35s cubic-bezier(.34,1.56,.64,1); }
.cookie-banner-icon { font-size: 44px; }
.cookie-banner-body strong { font-size: 1.15rem; color: #0f172a; font-family: 'Cabinet Grotesk', inherit; display:block; }
.cookie-banner-body p { margin: .35rem 0 0; font-size: .9rem; color: #475569; line-height: 1.55; }
.cookie-banner-actions { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; width: 100%; margin-top: .75rem; }
.cookie-banner-actions .btn { padding: .7rem 1.1rem; font-size: .85rem; flex: 1 1 auto; min-width: 110px; justify-content: center; }
@media (max-width: 520px) {
 .cookie-banner { padding: 1rem; }
 .cookie-banner-inner { padding: 1.25rem; border-radius: 18px; }
}

.cookie-modal { position: fixed; inset: 0; z-index: 9100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.cookie-modal.show { display: flex; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(15,23,42,.5); backdrop-filter: blur(10px); }
.cookie-modal-content { position: relative; background: white; border-radius: 24px; padding: 2rem; max-width: 480px; width: 100%; box-shadow: 0 30px 60px rgba(15,23,42,.35); animation: popIn .4s cubic-bezier(.34,1.56,.64,1); max-height: 90vh; overflow-y: auto; }
.cookie-modal-close { position: absolute; top: 1rem; right: 1rem; background: #f1f5f9; border: 0; width: 32px; height: 32px; border-radius: 99px; cursor: pointer; font-size: 20px; color: #64748b; }
.cookie-option { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1rem; margin-top: 1rem; }
.cookie-option small { display: block; color: #64748b; font-size: .78rem; margin-top: .35rem; line-height: 1.5; }
.cookie-toggle { display: flex; justify-content: space-between; align-items: center; gap: .75rem; cursor: pointer; }
.cookie-toggle input { display: none; }
.cookie-switch { width: 42px; height: 24px; background: #cbd5e1; border-radius: 99px; position: relative; transition: background .25s; }
.cookie-switch::after { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: white; border-radius: 99px; transition: transform .25s; }
.cookie-toggle input:checked + .cookie-switch { background: var(--brand-green); }
.cookie-toggle input:checked + .cookie-switch::after { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-switch { opacity: .6; cursor: not-allowed; }
.cookie-modal-actions { display: flex; gap: .5rem; margin-top: 1.5rem; }
.cookie-modal-actions .btn { flex: 1; justify-content: center; }
.cookie-policy-list { display: grid; gap: 1rem; margin-top: 1rem; }
.cookie-policy-item { background: var(--brand-green-light); border: 1px solid #c8e6d4; border-radius: 16px; padding: 1.25rem; }
.cookie-policy-item h3 { margin: 0 0 .35rem; font-size: 1.1rem; color: var(--brand-green-dark); }
.cookie-policy-item p { margin: 0; color: #334155; }

/* === SYARAT (Requirements) GRID === */
.syarat-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 2.5rem; }
.syarat-card { background: white; border: 1.5px solid #f1f5f9; border-radius: 22px; padding: 1.75rem; transition: all .3s; display: flex; flex-direction: column; }
.syarat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(35,52,146,.1); border-color: var(--brand-green); }
.syarat-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--brand-gradient); color: white; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 1rem; }
.syarat-card h3 { margin: 0; font-size: 1.2rem; }
.syarat-card > p { color: #64748b; margin: .25rem 0 1rem; }
.syarat-card ul { list-style: none; padding: 0; margin: 0 0 1rem; font-size: .88rem; color: #334155; }
.syarat-card ul li { padding: .35rem 0; display: flex; align-items: start; gap: .5rem; }
.syarat-card ul li::before { content: ''; color: var(--brand-green); font-weight: 800; flex-shrink: 0; }
.syarat-time { background: var(--brand-green-light); color: var(--brand-green-dark); padding: .5rem .75rem; border-radius: 10px; font-size: .82rem; font-weight: 600; margin-bottom: 1rem; text-align: center; }

/* === E-MATERAI SECTION === */
.ematerai-section { background: linear-gradient(135deg, #ebedf8 0%, #e8f5ee 100%); border-radius: 28px; padding: 3rem 2rem; margin-top: 5rem; border: 1px solid #d1d8ee; }
.ematerai-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 800px) { .ematerai-grid { grid-template-columns: 1.2fr 1fr; } }
.ematerai-visual { display: flex; justify-content: center; }
.ematerai-card-demo { background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 20px 40px rgba(35,52,146,.15); border: 2px dashed #cbd5e1; }
.ematerai-stamp { background: linear-gradient(135deg, #233492, #349265); color: white; border-radius: 14px; padding: 1.5rem 2rem; text-align: center; box-shadow: 0 12px 30px rgba(35,52,146,.4); position: relative; }
.ematerai-stamp::before, .ematerai-stamp::after { content: ''; position: absolute; width: 12px; height: 12px; border-radius: 99px; background: #f8fafc; top: 50%; transform: translateY(-50%); }
.ematerai-stamp::before { left: -6px; }
.ematerai-stamp::after { right: -6px; }
.ematerai-stamp-amount { font-family: 'Cabinet Grotesk', sans-serif; font-size: 1.8rem; font-weight: 800; }
.ematerai-stamp-text { font-size: .75rem; letter-spacing: .15em; font-weight: 700; margin-top: .25rem; }
.ematerai-stamp-issuer { font-size: .65rem; opacity: .8; letter-spacing: .1em; margin-top: .5rem; padding-top: .5rem; border-top: 1px solid rgba(255,255,255,.3); }

/* === FAQ === */
.faq-list { display: grid; gap: .75rem; }
.faq-item { background: white; border: 1px solid #e2e8f0; border-radius: 14px; padding: 1rem 1.25rem; transition: all .2s; }
.faq-item[open] { border-color: var(--brand-green); box-shadow: 0 8px 20px rgba(52,146,101,.08); }
.faq-item summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: #0f172a; font-size: .95rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--brand-green); transition: transform .25s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: .75rem 0 0; color: #475569; line-height: 1.7; font-size: .9rem; }

 .admin-nav { display: flex; gap: .35rem; padding: .25rem; flex: 1; overflow-x: auto; }
 .admin-nav a { white-space: nowrap; padding: .5rem .75rem; font-size: .8rem; flex-shrink: 0; }
 .admin-main { padding: 1rem; }
 .admin-table { font-size: .75rem; }
 .admin-table th, .admin-table td { padding: .5rem .65rem; }
@media (max-width: 480px) {
 .admin-main h1 { font-size: 1.4rem; }
}

/* === PAYMENT TYPE CARDS (DP / Lunas / Bayar Akhir / Pay Later) === */
.payment-type-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 1rem; }
.payment-type-card { display: block; background: white; border: 2px solid #e2e8f0; border-radius: 18px; padding: 1.25rem; cursor: pointer; transition: all .25s; position: relative; }
.payment-type-card:hover { border-color: var(--brand-green); transform: translateY(-3px); }
.payment-type-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.payment-type-card input[type="radio"]:checked + .payment-type-content { color: var(--brand-green-dark); }
.payment-type-card:has(input:checked) { border-color: var(--brand-green); background: var(--brand-green-light); box-shadow: 0 8px 20px rgba(52,146,101,.15); }
.payment-type-icon { font-size: 32px; margin-bottom: .35rem; }
.payment-type-card strong { display: block; font-size: 1rem; }
.payment-type-card p { font-size: .82rem; color: #64748b; margin: .35rem 0 .75rem; line-height: 1.45; }
.payment-type-price { font-family: 'Cabinet Grotesk', sans-serif; font-weight: 800; color: var(--brand-indigo); font-size: 1.05rem; }
.payment-type-price small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; font-size: .72rem; color: #64748b; margin-top: .15rem; }
.payment-badge { display: inline-block; background: linear-gradient(135deg, #f59e0b, #dc2626); color: white; padding: .15rem .55rem; border-radius: 99px; font-size: .62rem; font-weight: 700; margin: .35rem 0; }
.payment-special { border-color: #f59e0b; background: linear-gradient(135deg, #fef3c7, #ffffff); }
.payment-disabled { opacity: .55; cursor: not-allowed; }
.payment-disabled:hover { transform: none; border-color: #e2e8f0; }

/* === ORDER TRACKING (Lacak) === */
.lacak-result { background: white; border-radius: 22px; padding: 2rem; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(15,23,42,.04); margin-top: 2rem; }
.lacak-header { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-bottom: 1.5rem; border-bottom: 1px dashed #e2e8f0; }
.lacak-status-badge { color: white; padding: .65rem 1.25rem; border-radius: 99px; font-weight: 700; font-size: .92rem; box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.lacak-info { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-top: 1.5rem; }
.lacak-info > div { background: #f8fafc; border-radius: 12px; padding: .85rem; }
.lacak-info span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; }
.lacak-info strong { font-size: .92rem; color: #0f172a; }
.lacak-timeline { position: relative; }
.lacak-timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--brand-green), var(--brand-indigo)); }
.lacak-step { display: flex; gap: 1rem; padding: .85rem 0; position: relative; }
.lacak-step-dot { width: 38px; height: 38px; border-radius: 99px; color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; box-shadow: 0 6px 14px rgba(0,0,0,.15); border: 3px solid white; font-size: 18px; }
.lacak-step.current .lacak-step-dot { animation: lacakPulse 2s ease-in-out infinite; }
@keyframes lacakPulse { 0%, 100% { transform: scale(1); box-shadow: 0 6px 14px rgba(0,0,0,.15), 0 0 0 0 rgba(52,146,101,.5); } 50% { transform: scale(1.08); box-shadow: 0 6px 14px rgba(0,0,0,.15), 0 0 0 12px rgba(52,146,101,0); } }
.lacak-step-body { flex: 1; padding-top: .35rem; }
.lacak-note { background: #fef3c7; border-left: 3px solid #f59e0b; border-radius: 8px; padding: .6rem .85rem; margin-top: .5rem; font-size: .85rem; color: #78350f; line-height: 1.5; }
.lacak-help { background: linear-gradient(135deg, var(--brand-green-light), var(--brand-indigo-light)); border-radius: 16px; padding: 1.5rem; text-align: center; }
.lacak-help p { margin: 0 0 .75rem; }
@media (max-width: 600px) {
 .lacak-result { padding: 1.25rem; }
 .lacak-header { flex-direction: column; align-items: flex-start; }
}

/* === CHAT NAME CAPTURE === */
.chat-name-capture { padding: 2rem 1.5rem; text-align: center; }
.chat-welcome-icon { font-size: 48px; margin-bottom: .5rem; animation: bouncePromo 2s ease-in-out infinite; }
.chat-name-capture h4 { margin: 0 0 .35rem; font-size: 1.15rem; }
.chat-name-capture form { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.chat-name-capture input { padding: .85rem 1rem; border: 1.5px solid #e2e8f0; border-radius: 14px; font-size: .95rem; font-family: inherit; }
.chat-name-capture input:focus { outline: none; border-color: var(--brand-green); box-shadow: 0 0 0 3px rgba(52,146,101,.15); }
.chat-msg.admin .chat-bubble { background: linear-gradient(135deg,#fbbf24,#f59e0b); color: #422006; }

/* (order-status-grid responsive merged into admin media query above) */


/* === BTN LG === */
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* === NEWS META BAR HORIZONTAL SCROLL on mobile === */
@media (max-width: 480px) {
 .news-meta { font-size: .72rem; gap: .65rem; }
 .news-actions { gap: .35rem; }
 .news-detail h1 { font-size: 1.5rem; }
 .news-body { font-size: .98rem; }
}

/* === FIX MOBILE OVERFLOW & SAFE LAYOUT (v2026-05-21) === */
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, iframe, table { max-width: 100%; height: auto; }
.container, .news-grid, .service-grid, .hero-grid, .stats-grid,
.usp-grid, .footer-grid, .form-row, .method-grid, .bank-grid,
.payment-type-grid, .news-card, .news-card-body, .service-card {
 min-width: 0;
}
.news-card-body { word-break: break-word; }
.news-card-body h3 { margin: .35rem 0 .5rem; line-height: 1.3; }
.news-card-body .news-excerpt { margin-bottom: .75rem; }
.news-meta { display: flex; flex-wrap: wrap; gap: .9rem; font-size: .78rem; color: #64748b; align-items: center; }
.news-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .5rem; }
section, .section, .hero, .footer { max-width: 100vw; overflow-x: clip; }

/* === ADMIN SIDEBAR COLLAPSIBLE (hamburger like user header) === */
.admin-topbar {
 display: none;
 align-items: center;
 justify-content: space-between;
 background: #fff;
 border-bottom: 1px solid #e2e8f0;
 padding: .75rem 1rem;
 position: sticky; top: 0; z-index: 30;
}
.admin-topbar .brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; color: inherit; }
.admin-burger {
 background: #f1f5f9; border: 0; width: 42px; height: 42px; border-radius: 12px;
 display: flex; flex-direction: column; align-items: center; justify-content: center;
 gap: 4px; cursor: pointer;
}
.admin-burger span { display: block; width: 20px; height: 2px; background: #0f172a; border-radius: 2px; transition: all .25s; }
.admin-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.admin-burger.open span:nth-child(2) { opacity: 0; }
.admin-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.admin-backdrop {
 display: none; position: fixed; inset: 0; background: rgba(15,23,42,.55);
 backdrop-filter: blur(4px); z-index: 40;
}
.admin-backdrop.show { display: block; }

@media (max-width: 900px) {
 /* Override the older row-style mobile sidebar so we can do real drawer */
 .admin-wrap { flex-direction: row; }
 .admin-topbar { display: flex; }
 .admin-side {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 280px; max-width: 85vw;
  flex-direction: column !important; align-items: stretch !important;
  padding: 0 !important; overflow-y: auto; overflow-x: hidden !important;
  transform: translateX(-100%); transition: transform .28s ease;
  z-index: 50; box-shadow: 0 20px 60px rgba(15,23,42,.25);
 }
 .admin-side.open { transform: translateX(0); }
 .admin-side-head, .admin-side-foot { display: block !important; }
 .admin-nav { display: flex; flex-direction: column; gap: .25rem; padding: .75rem; flex: 1; overflow: visible; }
 .admin-nav a { white-space: normal; }
 .admin-main { width: 100%; padding: 1rem; }
}
@media (min-width: 901px) {
 .admin-topbar, .admin-backdrop { display: none !important; }
}

/* === NEW PAYMENT STATUS BADGES === */
.status-awaiting_confirmation { background: #fef3c7; color: #92400e; }
.status-paid_full, .status-paid { background: #dcfce7; color: #166534; }
.status-paid_dp { background: #e0f2fe; color: #075985; }
.status-processing_akta, .status-processing { background: #ede9fe; color: #5b21b6; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-pending { background: #f1f5f9; color: #475569; }

/* === PROFILE & ADMIN USER CARDS === */
.profile-card { background: #fff; border-radius: 18px; padding: 1.75rem; box-shadow: 0 4px 14px rgba(15,23,42,.05); max-width: 720px; }
.avatar-circle { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; background: linear-gradient(135deg,#14b8a6,#0d9488); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 2rem; }

/* === FINAL SAFE RESPONSIVE PATCH (v2026-05-21b) === */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
body { overflow-wrap: anywhere; }
.container, .section, .hero, .checkout-wrap, .form-card, .calc-card, .news-card, .service-card, .promo-card, .affiliate-card { min-width: 0; }
.container { max-width: min(1200px, 100%); }
.section, .hero, .footer, .trust-section, .usp-section, .bundling-section, .promo-section { overflow-x: clip; }
.flex, .form-row, .calc-row, .news-meta, .checkout-actions, .affiliate-grid, .affiliate-two-col, .affiliate-dashboard { min-width: 0; }
.news-card { display: flex; flex-direction: column; }
.news-card-body { display: block !important; min-height: 0; }
.news-excerpt { display: block; margin: .4rem 0 .75rem; line-height: 1.6; }
.news-meta { flex-wrap: wrap; row-gap: .45rem; }
.share-buttons { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .75rem; }
.share-btn { display: inline-flex; align-items: center; gap: .3rem; padding: .45rem .7rem; border-radius: 999px; border: 1px solid #e2e8f0; background: #fff; color: #334155; font-size: .78rem; font-weight: 700; cursor: pointer; }
.share-wa { background: #ecfdf5; color: #047857; border-color: #bbf7d0; }
.share-fb { background: #eff6ff; color: #1d4ed8; }
.share-tw { background: #f8fafc; color: #0f172a; }
.share-tg { background: #ecfeff; color: #0e7490; }
.method-card { appearance: none; font-family: inherit; }
.payment-panel { display: none; }
.payment-panel.active { display: block; }
.bank-info { display: none; }
.bank-info.active { display: block; }
.checkout-code-box { margin: 1.25rem 0; padding: 1rem; border: 1px solid #ccfbf1; border-radius: 18px; background: #f0fdfa; }
.checkout-total-box { margin-top: 1rem; border-top: 1px solid #e2e8f0; padding-top: 1rem; display: grid; gap: .5rem; }
.checkout-total-box > div { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.checkout-total-final { font-size: 1.15rem; color: #0d9488; }
.checkout-actions { display: flex; gap: .75rem; }
.checkout-actions .btn { flex: 1; justify-content: center; }
.status-approved, .status-paid, .status-paid_dp, .status-paid_full { background:#dcfce7; color:#166534; }
.status-rejected, .status-blocked { background:#fee2e2; color:#991b1b; }
.status-pending, .status-awaiting_confirmation { background:#fef3c7; color:#92400e; }
.affiliate-hero { background: var(--brand-gradient-soft); }
.affiliate-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: start; }
.affiliate-two-col { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.affiliate-dashboard { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.affiliate-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 1.25rem; box-shadow: 0 8px 24px rgba(15,23,42,.05); }
.affiliate-card small { display: block; color: #64748b; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.affiliate-card > strong { display: block; font-family: 'Cabinet Grotesk'; font-size: 1.8rem; color: #0d9488; }
.affiliate-profile-card { grid-column: span 2; }
.affiliate-stats-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 1.5rem; }
.affiliate-stats-strip div { background: rgba(255,255,255,.75); border: 1px solid #ccfbf1; border-radius: 16px; padding: 1rem; }
.affiliate-stats-strip strong { display:block; font-family:'Cabinet Grotesk'; font-size:1.4rem; color:#0d9488; }
.affiliate-stats-strip span { color:#64748b; font-size:.8rem; }
@media (min-width: 900px) { .affiliate-grid { grid-template-columns: 1.2fr .8fr; } .affiliate-two-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
 .container { padding-left: 1rem; padding-right: 1rem; }
 .calc-card, .form-card { padding: 1.25rem; border-radius: 22px; }
 .calc-card .flex.items-center { align-items: flex-start; }
 .calc-row, .calc-row[style] { grid-template-columns: 1fr !important; }
 .calc-toggle { flex-wrap: wrap; }
 .calc-toggle button { flex: 1 1 auto; min-width: 54px; }
 .calc-result { align-items: flex-start; }
 .calc-result-body { min-width: 0; width: 100%; }
 .calc-result-body strong { font-size: 1.45rem; }
 .calc-result .btn { width: 100%; justify-content: center; }
 .method-grid, .bank-grid { grid-template-columns: 1fr !important; }
 .checkout-head, .checkout-actions { flex-direction: column; align-items: stretch; }
 .stepper { padding: .8rem; overflow: hidden; }
 .stepper-label { display: none; }
 .bank-info .va-num { font-size: 1.15rem; letter-spacing: 1px; word-break: break-word; }
 .tier-price { font-size: 1.7rem; }
 .affiliate-profile-card { grid-column: auto; }
 .affiliate-stats-strip { grid-template-columns: 1fr; }
 .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
}


/* === v10 COMPACT HEADER + FORM SAFETY === */
.navbar { min-height: 58px; }
.nav-wrap { padding: .5rem 1rem; gap: .65rem; max-width: 1400px; }
.brand { gap: .48rem; }
.brand-mark { width: 32px; height: 32px; border-radius: 9px; }
.brand-mark svg { width: 18px; height: 18px; }
.brand-text strong { font-size: .95rem; letter-spacing: 0; }
.brand-text small { font-size: .52rem; letter-spacing: .16em; }
.nav-links { justify-content: flex-end; }
@media (min-width: 1100px) { .nav-links { display: flex; gap: 0; } .nav-toggle { display: none; } }
.nav-links a { padding: .42rem .52rem; font-size: .78rem; }
.nav-actions { gap: .35rem; }
.lang-current { padding: .42rem .62rem; font-size: .74rem; }
.nav-actions .btn { padding: .68rem 1.05rem; font-size: .82rem; box-shadow: 0 8px 22px rgba(20,184,166,.20); }
@media (min-width: 1100px) and (max-width: 1240px) {
 .container.nav-wrap { padding-left: .75rem; padding-right: .75rem; }
 .brand-text small { display: none; }
 .nav-links a { padding-left: .42rem; padding-right: .42rem; font-size: .75rem; }
 .nav-actions .btn { padding-left: .85rem; padding-right: .85rem; }
}
@media (max-width: 1099px) { .nav-toggle { display: flex; } .nav-links { display: none; } }
.form-card button[type="submit"], .admin-main button[type="submit"] { position: relative; }
.form-card button[type="submit"][disabled], .admin-main button[type="submit"][disabled] { opacity: .7; cursor: wait; transform: none; }
.affiliate-auth-shell { padding-top: 7rem; background: var(--brand-gradient-soft); }
.affiliate-auth-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; align-items: start; }
.affiliate-auth-panel { background: white; border: 1px solid #e2e8f0; border-radius: 24px; padding: 1.5rem; box-shadow: 0 12px 34px rgba(15,23,42,.06); }
.affiliate-auth-tabs { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.affiliate-auth-tabs a { flex: 1; min-width: 120px; text-align: center; padding: .7rem 1rem; border-radius: 999px; background: #f8fafc; color: #334155; font-weight: 700; border: 1px solid #e2e8f0; }
.affiliate-auth-tabs a.active { background: var(--brand-green); color: white; border-color: var(--brand-green); }
.affiliate-locked-note { background: #f0fdfa; border: 1px solid #99f6e4; border-radius: 18px; padding: 1rem; color: #115e59; font-weight: 600; }
@media (min-width: 900px) { .affiliate-auth-grid { grid-template-columns: .95fr 1.05fr; } }


/* === v11 ADMIN SIDEBAR + CHAT STABILITY PATCH === */
.admin-wrap { display: flex; align-items: stretch; min-height: 100vh; width: 100%; overflow-x: hidden; }
.admin-side { width: 218px !important; min-width: 218px; max-width: 218px; flex: 0 0 218px; position: sticky; top: 0; height: 100vh; overflow-y: auto; overflow-x: hidden; padding: 0 !important; }
.admin-side-head { padding: .9rem .85rem !important; }
.admin-side-head .brand { gap: .45rem; min-width: 0; }
.admin-side-head .brand-mark { width: 28px !important; height: 28px !important; border-radius: 8px !important; }
.admin-side-head .brand-text strong { font-size: .9rem; line-height: 1; }
.admin-side-head .brand-text small { font-size: .52rem; letter-spacing: .12em; }
.admin-nav { display: flex !important; flex-direction: column !important; gap: .14rem !important; padding: .55rem !important; overflow: visible !important; }
.admin-nav a { white-space: normal !important; min-height: 34px; padding: .48rem .58rem !important; border-radius: 10px !important; font-size: .78rem !important; line-height: 1.22; margin: 0 !important; gap: .35rem !important; }
.admin-side-foot { padding: .75rem !important; font-size: .78rem; }
.admin-side-foot .small { font-size: .72rem; }
.admin-side-foot .btn { padding: .55rem .75rem; font-size: .78rem; }
.admin-main { flex: 1 1 auto; min-width: 0; width: calc(100% - 218px); padding: 1.6rem !important; overflow-x: auto; }
.admin-main h1 { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: 1rem; }
.admin-stats { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.admin-stat { padding: 1rem; border-radius: 14px; }
.admin-stat-num { font-size: 1.65rem; }
.chat-window { max-width: 360px; height: min(620px, 72vh); z-index: 80; }
.chat-header { padding: .78rem 1rem; }
.chat-bubble { font-size: .86rem; line-height: 1.45; }
.chat-form input { min-width: 0; font-size: .86rem; }
.chat-form button:disabled { opacity: .7; cursor: wait; }
.chat-welcome-icon { width: 46px; height: 46px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: #e8f5ee; color: #0d9488; font-weight: 800; font-size: 1.2rem; animation: none !important; }

@media (max-width: 1024px) {
 .admin-topbar { display: flex !important; }
 .admin-wrap { flex-direction: row !important; }
 .admin-side { position: fixed !important; top: 0; left: 0; bottom: 0; width: 250px !important; min-width: 250px; max-width: 82vw; height: 100vh; transform: translateX(-100%); transition: transform .25s ease; z-index: 50; box-shadow: 0 20px 60px rgba(15,23,42,.25); }
 .admin-side.open { transform: translateX(0); }
 .admin-side-head, .admin-side-foot { display: block !important; }
 .admin-main { width: 100%; padding: 1rem !important; }
}
@media (min-width: 1025px) {
 .admin-topbar, .admin-backdrop { display: none !important; }
 .admin-side { transform: none !important; }
}
@media (max-width: 480px) {
 .chat-window { left: 12px; right: 12px; bottom: 86px; width: auto; max-width: none; height: min(600px, 74vh); border-radius: 18px; }
 .chat-header small { font-size: .68rem; }
 .chat-name-capture { padding: 1.2rem; }
}

/* === v13: voucher box in popup, persistent voucher fab, toast === */
.promo-voucher-box { background: linear-gradient(135deg,#fef3c7,#fde68a); border: 2px dashed #f59e0b; border-radius: 16px; padding: .9rem 1rem; margin: 1rem 0 1.2rem; }
.promo-voucher-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #92400e; margin-bottom: .35rem; font-weight: 700; }
.promo-voucher-row { display: flex; align-items: center; gap: .6rem; justify-content: center; }
.promo-voucher-code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 1.25rem; font-weight: 800; color: #92400e; letter-spacing: .12em; background: #fff; padding: .4rem .8rem; border-radius: 10px; border: 1px solid #fbbf24; }
.promo-voucher-copy { background: #92400e; color: #fff; border: 0; padding: .55rem .9rem; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: .85rem; }
.promo-voucher-copy:hover { background: #78350f; }
.promo-voucher-saving { text-align: center; color: #b45309; font-weight: 700; margin-top: .55rem; font-size: .9rem; }

.voucher-fab { position: fixed; left: 20px; bottom: 24px; z-index: 48; display: none; align-items: center; gap: .55rem; background: linear-gradient(135deg,#f59e0b,#dc2626); color: #fff; padding: .6rem .85rem; border: 0; border-radius: 99px; box-shadow: 0 12px 28px rgba(245,158,11,.45); cursor: pointer; font-family: inherit; max-width: 220px; text-align: left; animation: voucherPulse 2.6s ease-in-out infinite; }
.voucher-fab.show { display: inline-flex; }
.voucher-fab:hover { transform: translateY(-2px); }
.voucher-fab-tag { background: rgba(255,255,255,.25); border-radius: 99px; padding: .15rem .55rem; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.voucher-fab-text { font-size: .85rem; line-height: 1.15; }
.voucher-fab-text small { font-weight: 400; opacity: .9; font-size: .7rem; }
@keyframes voucherPulse { 0%,100% { box-shadow: 0 12px 28px rgba(245,158,11,.45); } 50% { box-shadow: 0 12px 32px rgba(220,38,38,.55); } }
@media (max-width: 480px) { .voucher-fab { max-width: 160px; bottom: 18px; left: 14px; } .voucher-fab-text { font-size: .75rem; } }

.jl-toast-wrap { position: fixed; top: 18px; right: 18px; z-index: 9999; display: flex; flex-direction: column; gap: .55rem; pointer-events: none; }
.jl-toast { pointer-events: auto; min-width: 240px; max-width: 360px; background: #1e293b; color: #fff; padding: .8rem 1rem; border-radius: 12px; box-shadow: 0 18px 40px rgba(15,23,42,.35); font-size: .9rem; border-left: 4px solid #0ea5e9; animation: jlToastIn .25s ease-out; }
.jl-toast.out { animation: jlToastOut .3s ease-in forwards; }
.jl-toast-success { border-left-color: #16a34a; background: #065f46; }
.jl-toast-error { border-left-color: #dc2626; background: #7f1d1d; }
.jl-toast-info { border-left-color: #0ea5e9; }
@keyframes jlToastIn { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes jlToastOut { to { transform: translateX(40px); opacity: 0; } }

/* === v18 performance pass: keep the same look, reduce paint/reflow cost === */
.section,.usp-section,.bundling-section,.promo-section,.trust-section,.footer{content-visibility:auto;contain-intrinsic-size:1px 760px;}
.hero-image,.voucher-fab{animation:none!important;}
.hero-image-wrap::before{filter:blur(18px);opacity:.72;}
.glass,.navbar,.nav-mobile,.hero-float-card,.promo-card,.calc-card{backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);}
@media (max-width:768px){.glass,.navbar,.nav-mobile,.hero-float-card,.promo-card,.calc-card{backdrop-filter:none;-webkit-backdrop-filter:none}.hero-image-wrap::before{display:none}.hero-image{box-shadow:0 18px 36px rgba(15,23,42,.16)}}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}

/* v23 partner image tile */
.partner-logo-tile--img{padding:.6rem;display:flex;align-items:center;justify-content:center;min-height:60px}
.partner-logo-tile--img img{max-height:38px;max-width:100%;width:auto;object-fit:contain;filter:grayscale(20%);transition:filter .25s, transform .25s}
.partner-logo-tile--img:hover img{filter:grayscale(0);transform:scale(1.05)}
.brand .brand-text small{font-size:.7rem;color:#64748b;display:block;line-height:1.1;margin-top:2px;letter-spacing:.01em}
