/* GoExch9 shared stylesheet: tokens, shell (header/footer), shared blocks. Page-only rules stay inline. */
:root{--primary:#e11d74;--primary-light:#ff4d9a;--primary-dark:#a81558;--secondary:#00d4aa;--secondary-light:#33ffd4;--accent:#ffc107;--accent-ink:#2A1A00;--success:#00e676;--bg-base:#080010;--bg-elevated:#0f0520;--bg-surface:#1a0a30;--bg-card:rgba(26,10,48,0.8);--text-primary:#fff;--text-secondary:#c8b8e8;--text-muted:#a898c8;--font-display:Impact,'Arial Black','Helvetica Neue',sans-serif;--font-body:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,monospace;--radius-sm:4px;--radius-md:8px;--radius-lg:12px;--radius-xl:16px;--radius-2xl:24px;--radius-full:9999px;--shadow-glow-primary:0 0 40px rgba(225,29,116,0.4);--shadow-glow-secondary:0 0 40px rgba(0,212,170,0.3);--transition:150ms ease;--container:1280px}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;overflow-x:clip}
body{font-family:var(--font-body);font-size:1rem;line-height:1.7;color:var(--text-primary);background:var(--bg-base);overflow-x:clip;max-width:100%;-webkit-font-smoothing:antialiased}
main{max-width:100%;overflow-x:clip;display:block}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none;transition:color var(--transition)}
ul,ol{list-style:none}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:400;line-height:1.12;letter-spacing:0.02em}
:focus-visible{outline:2px solid var(--secondary);outline-offset:2px}
::selection{background:var(--primary);color:var(--text-primary)}
.skip-link{position:absolute;left:-9999px;top:0;z-index:999;background:var(--accent);color:var(--accent-ink);padding:.6rem 1rem;font-weight:700}
.skip-link:focus{left:0}
.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 1.5rem}
.gradient-text{background:linear-gradient(135deg,var(--primary),var(--secondary));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.icon{width:1em;height:1em;display:inline-block;vertical-align:-0.125em;fill:currentColor}
.bg-animation{position:fixed;inset:0;z-index:-1;background:linear-gradient(135deg,rgba(225,29,116,0.08) 0%,transparent 40%,rgba(0,212,170,0.05) 100%);pointer-events:none;contain:strict}

/* header */
.header{position:sticky;top:0;left:0;right:0;z-index:300;width:100%;max-width:100vw;padding:.7rem 0;background:rgba(8,0,16,0.98);border-bottom:1px solid rgba(225,29,116,0.2)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.logo{display:flex;align-items:center;flex-shrink:0}
.logo-img{width:78px;height:49px;object-fit:contain}
.nav{display:flex;align-items:center;gap:.15rem}
.nav-link{padding:.5rem .6rem;font-family:var(--font-mono);font-size:.74rem;font-weight:500;color:var(--text-secondary);text-transform:uppercase;letter-spacing:.03em;border-radius:var(--radius-md);white-space:nowrap}
.nav-link:hover,.nav-link[aria-current="page"]{color:var(--text-primary);background:rgba(225,29,116,0.14)}
.nav-cta{background:var(--accent)!important;background-color:var(--accent)!important;color:var(--accent-ink)!important;font-weight:700;margin-left:.3rem}
.menu-toggle{display:none;width:48px;height:48px;background:transparent;border:2px solid var(--primary);border-radius:var(--radius-md);cursor:pointer;position:relative}
.menu-toggle span{position:absolute;left:50%;transform:translateX(-50%);width:22px;height:2px;background:var(--primary);border-radius:2px;transition:all .3s ease}
.menu-toggle span:nth-child(1){top:14px}
.menu-toggle span:nth-child(2){top:22px;width:16px}
.menu-toggle span:nth-child(3){top:30px;width:10px}
.menu-toggle.active{border-color:var(--secondary)}
.menu-toggle.active span{background:var(--secondary)}
.menu-toggle.active span:nth-child(1){top:22px;transform:translateX(-50%) rotate(45deg)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){top:22px;width:22px;transform:translateX(-50%) rotate(-45deg)}
@media(max-width:1180px){
 .menu-toggle{display:block}
 .nav{display:none;position:absolute;top:100%;left:0;right:0;flex-direction:column;align-items:stretch;gap:.35rem;padding:1rem 1.5rem 1.4rem;background:rgba(8,0,16,0.99);border-bottom:2px solid var(--primary);max-height:calc(100vh - 80px);overflow-y:auto}
 .nav.open{display:flex}
 .nav-link{text-align:center;padding:.85rem 1rem;font-size:.95rem}
 .nav-cta{margin:.3rem 0 0}
}

/* breadcrumb */
.crumbs{font-family:var(--font-mono);font-size:.78rem;color:var(--text-muted);padding:1.1rem 0 0}
.crumbs ol{display:flex;flex-wrap:wrap;gap:.4rem}
.crumbs li+li::before{content:"/";margin-right:.4rem;color:var(--primary)}
.crumbs a{color:var(--secondary)}

/* buttons: CTA only accent gold or WhatsApp green */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;min-height:48px;padding:.85rem 1.8rem;font-family:var(--font-display);font-size:1.05rem;letter-spacing:.05em;text-transform:uppercase;border:none;border-radius:var(--radius-full);cursor:pointer;transition:transform var(--transition)}
.btn:hover{transform:translateY(-3px)}
.btn-primary{background:var(--accent)!important;background-color:var(--accent)!important;color:var(--accent-ink)!important;box-shadow:0 0 30px rgba(255,193,7,0.3)}
.btn-wa{background:#25D366!important;background-color:#25D366!important;color:#04250F!important}

/* sections + prose */
.section{position:relative;padding:4rem 0}
.section-alt{background:var(--bg-elevated)}
.section-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.25rem 1rem;margin-bottom:1rem;background:rgba(225,29,116,0.1);border:1px solid rgba(225,29,116,0.25);border-radius:var(--radius-full);font-family:var(--font-mono);font-size:.74rem;color:var(--primary-light);text-transform:uppercase;letter-spacing:.1em}
.section-title{font-size:clamp(1.8rem,4.4vw,2.7rem);margin-bottom:1rem}
.prose{max-width:860px}
.prose h2{font-size:clamp(1.7rem,4vw,2.5rem);margin:0 0 1.1rem}
.prose h3{font-size:1.35rem;color:var(--accent);margin:1.8rem 0 .6rem}
.prose p{color:var(--text-secondary);margin-bottom:1.05rem;line-height:1.85}
.prose ul,.prose ol{margin:0 0 1.2rem;color:var(--text-secondary)}
.prose ul li{position:relative;padding-left:1.5rem;margin-bottom:.5rem}
.prose ul li::before{content:"";position:absolute;left:0;top:.72em;width:8px;height:8px;border-radius:2px;background:var(--secondary)}
.prose ol{counter-reset:g9}
.prose ol li{counter-increment:g9;position:relative;padding-left:2.4rem;margin-bottom:.7rem}
.prose ol li::before{content:counter(g9);position:absolute;left:0;top:.1em;width:1.7rem;height:1.7rem;border-radius:50%;background:linear-gradient(135deg,var(--primary),var(--secondary));color:#fff;font-size:.82rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.prose a:not([class]){color:var(--secondary);text-decoration:underline;text-underline-offset:3px}
.prose strong{color:var(--text-primary)}
.lead-answer{border-left:4px solid var(--secondary);background:rgba(0,212,170,0.06);padding:1rem 1.2rem;border-radius:0 var(--radius-lg) var(--radius-lg) 0;margin:0 0 1.3rem}
.lead-answer p{margin:0;color:var(--text-primary)}
.table-wrapper{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 0 1.5rem}
.features-table{width:100%;border-collapse:collapse;border:2px solid var(--primary);background:var(--bg-card);font-size:.93rem}
.features-table th{padding:.9rem 1rem;font-family:var(--font-display);font-weight:400;font-size:1.02rem;color:var(--secondary);text-align:left;text-transform:uppercase;letter-spacing:.04em;border-bottom:2px solid var(--primary);background:rgba(225,29,116,0.12)}
.features-table td{padding:.8rem 1rem;color:var(--text-secondary);border-bottom:1px solid rgba(225,29,116,0.14);vertical-align:top;line-height:1.65}
.features-table td:first-child{color:var(--accent);font-weight:600}

/* banner figure */
.shot-g9{margin:2rem auto;max-width:860px;width:100%}
.shot-g9 img{width:100%;height:auto;border-radius:var(--radius-xl);border:1px solid rgba(225,29,116,0.3)}
.shot-g9 figcaption{margin-top:.6rem;font-size:.85rem;color:var(--text-muted);text-align:center}

/* FAQ */
.faq-container{max-width:860px}
.faq-item{margin-bottom:.8rem;border:1px solid rgba(225,29,116,0.22);border-radius:var(--radius-lg);background:rgba(0,0,0,0.3)}
.faq-item summary{list-style:none;cursor:pointer;padding:1.05rem 3rem 1.05rem 1.2rem;font-weight:600;color:var(--accent);position:relative}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";position:absolute;right:1.1rem;top:50%;transform:translateY(-50%);font-size:1.4rem;color:var(--primary)}
.faq-item[open] summary::after{content:"\2212"}
.faq-item p{padding:0 1.2rem 1.1rem;color:var(--text-secondary);line-height:1.8}

/* seo keyword box: format differs per page, compact styles shared */
.g9-seo-box{margin:3rem 0 1.5rem;max-height:430px;overflow-y:auto;padding:1.5rem 1.6rem;border:1px solid rgba(0,212,170,0.25);border-radius:var(--radius-xl);background:rgba(15,5,32,0.9)}
.g9-seo-box h2{font-size:1.5rem;margin-bottom:.8rem}
.g9-seo-box h3{font-size:1.05rem;color:var(--accent);margin:1rem 0 .35rem}
.g9-seo-box p,.g9-seo-box li,.g9-seo-box dd,.g9-seo-box td{color:var(--text-secondary);font-size:.92rem;line-height:1.75}
.g9-seo-box p{margin-bottom:.7rem}
.g9-seo-box ul,.g9-seo-box ol{margin:0 0 .8rem 1.2rem}
.g9-seo-box ul{list-style:square}
.g9-seo-box ol{list-style:decimal}
.g9-seo-box li{margin-bottom:.35rem}
.g9-seo-box dl{display:grid;grid-template-columns:minmax(120px,190px) 1fr;gap:.45rem 1rem}
.g9-seo-box dt{color:var(--accent);font-weight:600;font-size:.9rem}
.g9-seo-box dd{margin:0}
.g9-seo-box table{width:100%;border-collapse:collapse;margin-bottom:.8rem}
.g9-seo-box td,.g9-seo-box th{border-bottom:1px solid rgba(255,255,255,0.08);padding:.45rem .5rem;text-align:left;vertical-align:top}
.g9-seo-box th{color:var(--secondary);font-size:.85rem;font-weight:600}
.g9-seo-box .two{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.g9-seo-box .qa b{color:var(--text-primary)}
@media(max-width:640px){.g9-seo-box dl,.g9-seo-box .two{grid-template-columns:1fr}}

/* keyword chips */
.g9-chips{margin:0 0 3rem}
.g9-chips h2{font-size:1.25rem;margin-bottom:.8rem;color:var(--text-secondary)}
.g9-chips ul{display:flex;flex-wrap:wrap;gap:.55rem}
.g9-chips li{padding:.55rem .95rem;min-height:44px;display:flex;align-items:center;border:1px solid rgba(225,29,116,0.3);border-radius:var(--radius-full);font-size:.86rem;color:var(--text-secondary);background:rgba(26,10,48,0.6)}

/* footer */
.footer{background:var(--bg-base);border-top:1px solid rgba(225,29,116,0.2);padding-top:3.5rem}
.footer-grid{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:2.5rem;margin-bottom:2.5rem}
.footer-brand .logo{margin-bottom:1rem}
.footer-brand>p{color:var(--text-muted);font-size:.9rem;line-height:1.8;max-width:360px;margin-bottom:1.3rem}
.footer-social{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1rem}
.footer-social a{width:44px;height:44px;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.12);border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;color:var(--text-secondary);transition:transform var(--transition)}
.footer-social a:hover{border-color:var(--secondary);color:var(--secondary);transform:translateY(-3px)}
.footer-social svg{width:20px;height:20px;fill:currentColor}
.tp-badge{display:inline-flex;align-items:center;gap:.5rem;min-height:44px;padding:.4rem .9rem;border:1px solid rgba(0,182,122,0.5);border-radius:var(--radius-md);font-size:.85rem;color:var(--text-primary)}
.tp-badge svg{width:20px;height:20px}
.footer-title{font-family:var(--font-display);font-size:1.05rem;color:var(--secondary);margin-bottom:1.1rem;text-transform:uppercase;letter-spacing:.05em}
.footer-col li{margin-bottom:.15rem}
.footer-col a{display:inline-flex;align-items:center;min-height:36px;color:var(--text-muted);font-size:.88rem}
.footer-col a:hover{color:var(--primary-light)}
.footer-note{color:var(--text-muted);font-size:.88rem;line-height:1.7}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.06);padding:1.4rem 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bottom p{color:var(--text-muted);font-size:.86rem}
.age-badge{display:flex;align-items:center;gap:.5rem}
.age-badge span{width:40px;height:40px;background:rgba(225,29,116,0.2);border:2px solid var(--primary);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:.875rem;color:var(--primary-light)}

/* WhatsApp float, 60x60 */
.whatsapp-float{position:fixed;bottom:1.25rem;right:1.25rem;z-index:290;width:60px;height:60px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,0.45);animation:pulse-wa 2s infinite}
.whatsapp-float svg{width:32px;height:32px;fill:#fff}
@keyframes pulse-wa{0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.55)}70%{box-shadow:0 0 0 16px rgba(37,211,102,0)}}

@media(max-width:992px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.footer-grid{grid-template-columns:1fr}.section{padding:2.8rem 0}.container{padding:0 1rem}.logo-img{width:66px;height:41px}}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}
