/* ================================================================
   CONSULTORA — CSS Styles
   Colors: Indigo #4f46e5 / Rose #e11d48 / Off-white #f8f8fc / Dark #0c0c10
   Fonts: Plus Jakarta Sans (headings) + Figtree (body)
   ================================================================ */

/* ---------- Reset & Base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Figtree',sans-serif;font-weight:400;line-height:1.7;color:#3f3f46;background:#f8f8fc;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:color .3s}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ---------- Loader ---------- */
.loader{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;background:#0c0c10;transition:opacity .6s,visibility .6s}
.loader.hidden{opacity:0;visibility:hidden}
.loader-spinner{width:48px;height:48px;border:3px solid rgba(79,70,229,.2);border-top-color:#4f46e5;border-radius:50%;animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;color:#0c0c10;line-height:1.2}
h1{font-size:clamp(2.4rem,5vw,4rem);letter-spacing:-.02em}
h2{font-size:clamp(1.8rem,3.5vw,2.8rem);letter-spacing:-.015em}
h3{font-size:clamp(1.2rem,2vw,1.6rem)}
h4{font-size:1.1rem}
p{margin-bottom:1rem}
.text-gradient{background:linear-gradient(135deg,#4f46e5,#818cf8);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* ---------- Section Helpers ---------- */
.section{padding:6rem 1.5rem}
.section-dark{background:#0c0c10;color:#e4e4e7}
.section-dark h2,.section-dark h3,.section-dark h4{color:#fff}
.container{max-width:1200px;margin:0 auto}
.section-label{display:inline-block;font-family:'Plus Jakarta Sans',sans-serif;font-size:.75rem;font-weight:600;text-transform:uppercase;letter-spacing:.15em;color:#4f46e5;margin-bottom:.75rem;padding:.35rem .85rem;border:1px solid rgba(79,70,229,.25);border-radius:999px;background:rgba(79,70,229,.06)}
.section-dark .section-label{color:#818cf8;border-color:rgba(129,140,248,.3);background:rgba(129,140,248,.08)}
.section-title{margin-bottom:1rem}
.section-subtitle{color:#71717a;max-width:600px;font-size:1.05rem}
.section-header{text-align:center;margin-bottom:3.5rem}
.section-header .section-subtitle{margin-left:auto;margin-right:auto}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-family:'Plus Jakarta Sans',sans-serif;font-weight:600;font-size:.9rem;padding:.85rem 2rem;border-radius:10px;transition:all .35s}
.btn-primary{background:#4f46e5;color:#fff}
.btn-primary:hover{background:#4338ca;transform:translateY(-2px);box-shadow:0 8px 25px rgba(79,70,229,.35)}
.btn-accent{background:#e11d48;color:#fff}
.btn-accent:hover{background:#be123c;transform:translateY(-2px);box-shadow:0 8px 25px rgba(225,29,72,.35)}
.btn-outline{border:1.5px solid #e4e4e7;color:#0c0c10;background:transparent}
.btn-outline:hover{border-color:#4f46e5;color:#4f46e5;transform:translateY(-2px)}
.btn-white{background:#fff;color:#0c0c10}
.btn-white:hover{background:#f8f8fc;transform:translateY(-2px);box-shadow:0 8px 25px rgba(255,255,255,.2)}
.btn-dark .btn-outline{border-color:rgba(255,255,255,.2);color:#fff}
.btn-dark .btn-outline:hover{border-color:#818cf8;color:#818cf8}
.btn svg,.btn i{width:18px;height:18px}
.btn-sm{padding:.6rem 1.4rem;font-size:.82rem;border-radius:8px}

/* ---------- Header / Nav ---------- */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;padding:1rem 1.5rem;transition:all .35s}
.header.scrolled{background:rgba(255,255,255,.82);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 1px 20px rgba(12,12,16,.06);padding:.7rem 1.5rem}
.header-inner{display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto}
.logo{font-family:'Plus Jakarta Sans',sans-serif;font-size:1.35rem;font-weight:800;color:#fff;letter-spacing:-.03em;transition:color .35s}
.logo span{color:#818cf8;transition:color .35s}
.header.scrolled .logo{color:#0c0c10}
.header.scrolled .logo span{color:#4f46e5}
.nav{display:flex;align-items:center;gap:2rem}
.nav a{font-size:.88rem;font-weight:500;color:rgba(255,255,255,.85);position:relative;transition:color .35s}
.nav a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;background:#818cf8;transition:width .3s}
.nav a:hover,
.nav a.active{color:#fff}
.nav a:hover::after,
.nav a.active::after{width:100%}
.header.scrolled .nav a{color:#3f3f46}
.header.scrolled .nav a::after{background:#4f46e5}
.header.scrolled .nav a:hover,
.header.scrolled .nav a.active{color:#4f46e5}
.nav .btn{margin-left:.5rem}
.menu-toggle{display:none;flex-direction:column;gap:5px;padding:6px}
.menu-toggle span{display:block;width:24px;height:2px;background:#fff;border-radius:2px;transition:all .35s}
.header.scrolled .menu-toggle span{background:#0c0c10}

/* Mobile nav */
@media(max-width:768px){
  .nav{position:fixed;top:0;right:-100%;width:80%;max-width:320px;height:100vh;background:#fff;flex-direction:column;align-items:flex-start;padding:5rem 2rem 2rem;gap:1.5rem;transition:right .4s;box-shadow:-10px 0 40px rgba(0,0,0,.08)}
  .nav.open{right:0}
  .nav a{font-size:1.05rem;color:#3f3f46}
  .nav a:hover,.nav a.active{color:#4f46e5}
  .menu-toggle{display:flex}
}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;background:#0c0c10}
.hero-slides{position:absolute;inset:0;z-index:1}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1s}
.hero-slide.active{opacity:1}
.hero-slide img{width:100%;height:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(12,12,16,.85) 30%,rgba(12,12,16,.5) 100%);z-index:2}
.hero-content{position:relative;z-index:3;max-width:680px;padding:2rem 1.5rem}
.hero-content .container{max-width:1200px;margin:0 auto}
.hero .section-label{color:#818cf8;border-color:rgba(129,140,248,.3);background:rgba(129,140,248,.08)}
.hero h1{color:#fff;margin-bottom:1.25rem}
.hero h1 .highlight{color:#818cf8}
.hero p{color:rgba(255,255,255,.7);font-size:1.1rem;margin-bottom:2rem;max-width:520px}
.hero-buttons{display:flex;gap:1rem;flex-wrap:wrap}
.hero-stats{display:flex;gap:3rem;margin-top:3.5rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.1)}
.hero-stat-number{font-family:'Plus Jakarta Sans',sans-serif;font-size:2rem;font-weight:800;color:#fff}
.hero-stat-label{font-size:.82rem;color:rgba(255,255,255,.5);margin-top:.2rem}

/* Hero dots */
.hero-dots{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);z-index:4;display:flex;gap:.6rem}
.hero-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.3);cursor:pointer;transition:all .3s}
.hero-dot.active{background:#4f46e5;transform:scale(1.3)}

/* ---------- Services / Bento Grid ---------- */
.bento-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:1.5rem}
.bento-card{background:#fff;border-radius:16px;padding:2rem;border:1px solid #e4e4e7;transition:all .4s;overflow:hidden;position:relative}
.bento-card:hover{transform:translateY(-4px);box-shadow:0 20px 50px rgba(79,70,229,.08);border-color:rgba(79,70,229,.15)}
.bento-card.span-8{grid-column:span 8}
.bento-card.span-6{grid-column:span 6}
.bento-card.span-4{grid-column:span 4}
.bento-card .icon-box{width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;background:rgba(79,70,229,.08);color:#4f46e5;margin-bottom:1.25rem;font-size:1.3rem}
.bento-card h3{margin-bottom:.6rem}
.bento-card p{color:#71717a;font-size:.92rem;line-height:1.65}
.bento-card-img{border-radius:12px;overflow:hidden;margin-top:1.25rem}
.bento-card-img img{width:100%;height:200px;object-fit:cover}
@media(max-width:768px){
  .bento-card.span-8,.bento-card.span-6,.bento-card.span-4{grid-column:span 12}
}

/* ---------- About / Split ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.split-reverse{direction:rtl}
.split-reverse>*{direction:ltr}
.split-img{border-radius:16px;overflow:hidden;position:relative}
.split-img img{width:100%;height:100%;object-fit:cover;min-height:400px}
.split-img .accent-badge{position:absolute;bottom:1.5rem;right:1.5rem;background:#4f46e5;color:#fff;font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:1.5rem;padding:1rem 1.5rem;border-radius:12px;box-shadow:0 10px 30px rgba(79,70,229,.4)}
.split-text .section-label{margin-bottom:.75rem}
.split-text h2{margin-bottom:1rem}
.split-text p{color:#71717a}
.split-text .btn{margin-top:1.5rem}
.values-list{margin-top:1.5rem;display:flex;flex-direction:column;gap:1rem}
.value-item{display:flex;gap:1rem;align-items:flex-start}
.value-icon{flex-shrink:0;width:40px;height:40px;border-radius:10px;background:rgba(79,70,229,.08);color:#4f46e5;display:flex;align-items:center;justify-content:center}
.value-item h4{margin-bottom:.2rem}
.value-item p{font-size:.88rem;color:#71717a;margin-bottom:0}
@media(max-width:768px){
  .split,.split-reverse{grid-template-columns:1fr;gap:2rem}
}

/* ---------- Stats Counter ---------- */
.stats-bar{background:#4f46e5;border-radius:20px;padding:3rem 2rem;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center;margin-top:-3rem;position:relative;z-index:5}
.stat-item .stat-number{font-family:'Plus Jakarta Sans',sans-serif;font-size:2.4rem;font-weight:800;color:#fff}
.stat-item .stat-text{font-size:.85rem;color:rgba(255,255,255,.7);margin-top:.3rem}
@media(max-width:768px){
  .stats-bar{grid-template-columns:repeat(2,1fr);margin-top:0;border-radius:16px}
}

/* ---------- Testimonials ---------- */
.testimonials-section{position:relative;background-size:cover;background-position:center;background-attachment:fixed}
.testimonials-section::before{content:'';position:absolute;inset:0;background:rgba(12,12,16,.88)}
.testimonials-section .container{position:relative;z-index:2}
.testimonial-carousel{position:relative;overflow:hidden}
.testimonial-slides{display:flex;transition:transform .6s ease}
.testimonial-card{min-width:100%;padding:2.5rem;text-align:center}
.testimonial-card .quote{font-size:1.15rem;font-style:italic;color:rgba(255,255,255,.85);max-width:700px;margin:0 auto 1.5rem;line-height:1.8}
.testimonial-card .author{font-family:'Plus Jakarta Sans',sans-serif;font-weight:600;color:#fff;font-size:.95rem}
.testimonial-card .role{font-size:.82rem;color:rgba(255,255,255,.5);margin-top:.2rem}
.testimonial-card .stars{color:#818cf8;margin-bottom:1rem;font-size:1.1rem}
.testimonial-nav{display:flex;justify-content:center;gap:.7rem;margin-top:2rem}
.testimonial-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.25);cursor:pointer;transition:all .3s}
.testimonial-dot.active{background:#4f46e5;transform:scale(1.3)}

/* ---------- FAQ ---------- */
.faq-item{background:#fff;border:1px solid #e4e4e7;border-radius:12px;margin-bottom:1rem;overflow:hidden;transition:all .3s}
.faq-item:hover{border-color:rgba(79,70,229,.2)}
.faq-item.open{border-color:rgba(79,70,229,.3);box-shadow:0 8px 25px rgba(79,70,229,.06)}
.faq-question{padding:1.25rem 1.5rem;display:flex;align-items:center;justify-content:space-between;cursor:pointer;font-family:'Plus Jakarta Sans',sans-serif;font-weight:600;font-size:.95rem;color:#0c0c10}
.faq-question .faq-icon{width:32px;height:32px;border-radius:8px;background:rgba(79,70,229,.06);display:flex;align-items:center;justify-content:center;transition:all .3s;flex-shrink:0;color:#4f46e5}
.faq-item.open .faq-icon{background:#4f46e5;color:#fff;transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-answer-inner{padding:0 1.5rem 1.25rem;color:#71717a;font-size:.92rem;line-height:1.7}
.faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:768px){.faq-grid{grid-template-columns:1fr}}

/* ---------- CTA / Banner ---------- */
.cta-banner{position:relative;border-radius:20px;overflow:hidden;padding:5rem 3rem;text-align:center;background-size:cover;background-position:center}
.cta-banner::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(79,70,229,.92),rgba(129,140,248,.85))}
.cta-banner>*{position:relative;z-index:2}
.cta-banner h2{color:#fff;margin-bottom:1rem}
.cta-banner p{color:rgba(255,255,255,.85);max-width:550px;margin:0 auto 2rem;font-size:1.05rem}

/* ---------- Team ---------- */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.team-card{background:#fff;border-radius:16px;overflow:hidden;border:1px solid #e4e4e7;transition:all .4s}
.team-card:hover{transform:translateY(-4px);box-shadow:0 20px 50px rgba(79,70,229,.08)}
.team-card-img{height:300px;overflow:hidden}
.team-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.team-card:hover .team-card-img img{transform:scale(1.05)}
.team-card-body{padding:1.5rem;text-align:center}
.team-card-body h3{margin-bottom:.2rem;font-size:1.1rem}
.team-card-body .role{color:#4f46e5;font-size:.82rem;font-weight:500}
.team-card-body p{font-size:.88rem;color:#71717a;margin-top:.6rem}
@media(max-width:768px){.team-grid{grid-template-columns:1fr}}

/* ---------- Articles / Blog ---------- */
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.article-card{background:#fff;border-radius:16px;overflow:hidden;border:1px solid #e4e4e7;transition:all .4s}
.article-card:hover{transform:translateY(-4px);box-shadow:0 20px 50px rgba(79,70,229,.08)}
.article-card-img{height:220px;overflow:hidden}
.article-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.article-card:hover .article-card-img img{transform:scale(1.05)}
.article-card-body{padding:1.5rem}
.article-card-body .tag{display:inline-block;font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;padding:.3rem .7rem;border-radius:6px;background:rgba(79,70,229,.08);color:#4f46e5;margin-bottom:.75rem}
.article-card-body h3{font-size:1.05rem;margin-bottom:.5rem;line-height:1.4}
.article-card-body h3 a:hover{color:#4f46e5}
.article-card-body p{font-size:.85rem;color:#71717a;margin-bottom:1rem}
.article-card-body .meta{font-size:.78rem;color:#a1a1aa;display:flex;gap:1rem}
@media(max-width:768px){.articles-grid{grid-template-columns:1fr}}

/* ---------- Article Single ---------- */
.article-hero{padding:8rem 1.5rem 3rem;text-align:center;background:#0c0c10}
.article-hero .tag{display:inline-block;font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;padding:.35rem .85rem;border-radius:6px;background:rgba(129,140,248,.12);color:#818cf8;margin-bottom:1rem}
.article-hero h1{color:#fff;margin-bottom:1rem;max-width:750px;margin-left:auto;margin-right:auto;font-size:clamp(1.8rem,4vw,2.8rem)}
.article-hero .meta{color:rgba(255,255,255,.5);font-size:.85rem}
.article-featured-img{max-width:900px;margin:-2rem auto 0;position:relative;z-index:2;border-radius:16px;overflow:hidden}
.article-featured-img img{width:100%;height:auto}
.article-content{max-width:780px;margin:3rem auto;padding:0 1.5rem}
.article-content h2{margin:2.5rem 0 1rem;font-size:1.5rem}
.article-content h3{margin:2rem 0 .75rem;font-size:1.2rem}
.article-content p{margin-bottom:1.25rem;line-height:1.8;color:#3f3f46}
.article-content ul,.article-content ol{margin:1rem 0 1.5rem 1.5rem}
.article-content li{margin-bottom:.5rem;color:#3f3f46}
.article-content blockquote{border-left:3px solid #4f46e5;padding:1rem 1.5rem;margin:1.5rem 0;background:rgba(79,70,229,.04);border-radius:0 8px 8px 0;font-style:italic;color:#52525b}

/* ---------- Contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.contact-info-cards{display:flex;flex-direction:column;gap:1.5rem}
.contact-info-card{background:#fff;border:1px solid #e4e4e7;border-radius:12px;padding:1.5rem;display:flex;gap:1rem;align-items:flex-start;transition:all .3s}
.contact-info-card:hover{border-color:rgba(79,70,229,.2);box-shadow:0 8px 25px rgba(79,70,229,.06)}
.contact-info-card .icon{width:44px;height:44px;border-radius:10px;background:rgba(79,70,229,.08);color:#4f46e5;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.1rem}
.contact-info-card h4{font-size:.95rem;margin-bottom:.2rem}
.contact-info-card p{font-size:.88rem;color:#71717a;margin-bottom:0}
.contact-form{background:#fff;border:1px solid #e4e4e7;border-radius:16px;padding:2.5rem}
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-family:'Plus Jakarta Sans',sans-serif;font-size:.82rem;font-weight:600;color:#0c0c10;margin-bottom:.4rem}
.form-group input,.form-group textarea,.form-group select{width:100%;padding:.8rem 1rem;border:1.5px solid #e4e4e7;border-radius:10px;font-family:'Figtree',sans-serif;font-size:.9rem;color:#0c0c10;background:#f8f8fc;transition:border-color .3s,box-shadow .3s}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:#4f46e5;box-shadow:0 0 0 3px rgba(79,70,229,.1)}
.form-group textarea{resize:vertical;min-height:120px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group .error{border-color:#e11d48}
.form-group .error-msg{color:#e11d48;font-size:.78rem;margin-top:.3rem}
.contact-map{border-radius:16px;overflow:hidden;margin-top:3rem;height:400px}
.contact-map iframe{width:100%;height:100%;border:0}
@media(max-width:768px){
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}

/* ---------- Services Page ---------- */
.service-detail{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;padding:3rem 0;border-bottom:1px solid #e4e4e7}
.service-detail:last-child{border-bottom:none}
.service-detail:nth-child(even){direction:rtl}
.service-detail:nth-child(even)>*{direction:ltr}
.service-detail-img{border-radius:16px;overflow:hidden;height:320px}
.service-detail-img img{width:100%;height:100%;object-fit:cover}
.service-detail-text h3{margin-bottom:.75rem;font-size:1.3rem}
.service-detail-text p{color:#71717a;font-size:.92rem}
.service-detail-text ul{margin-top:1rem}
.service-detail-text li{padding:.4rem 0;color:#3f3f46;font-size:.9rem;display:flex;align-items:center;gap:.5rem}
.service-detail-text li::before{content:'✓';color:#4f46e5;font-weight:700}
@media(max-width:768px){
  .service-detail,.service-detail:nth-child(even){grid-template-columns:1fr;direction:ltr}
}

/* ---------- Page Hero ---------- */
.page-hero{padding:9rem 1.5rem 4rem;text-align:center;background:#0c0c10;position:relative;overflow:hidden}
.page-hero::after{content:'';position:absolute;width:500px;height:500px;border-radius:50%;background:rgba(79,70,229,.1);filter:blur(120px);top:-200px;right:-100px}
.page-hero h1{color:#fff;margin-bottom:1rem}
.page-hero p{color:rgba(255,255,255,.6);max-width:600px;margin:0 auto;font-size:1.05rem}
.page-hero .breadcrumb{margin-bottom:1rem;font-size:.82rem;color:rgba(255,255,255,.4)}
.page-hero .breadcrumb a{color:rgba(255,255,255,.5);transition:color .3s}
.page-hero .breadcrumb a:hover{color:#818cf8}

/* ---------- Legal Pages ---------- */
.legal-content{max-width:800px;margin:0 auto;padding:0 1.5rem}
.legal-content h2{margin-top:2.5rem;margin-bottom:.75rem;font-size:1.4rem}
.legal-content h3{margin-top:1.5rem;margin-bottom:.5rem}
.legal-content p{color:#52525b;line-height:1.8;margin-bottom:1rem}
.legal-content ul{margin:.75rem 0 1.25rem 1.5rem}
.legal-content li{color:#52525b;margin-bottom:.35rem}

/* ---------- Footer ---------- */
.footer{background:#0c0c10;color:#a1a1aa;padding:4rem 1.5rem 2rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand .logo{color:#fff;margin-bottom:1rem;display:inline-block}
.footer-brand p{font-size:.88rem;color:#71717a;max-width:280px;line-height:1.6}
.footer-col h4{color:#fff;font-size:.9rem;margin-bottom:1.25rem;font-weight:600}
.footer-col a{display:block;font-size:.88rem;color:#71717a;padding:.3rem 0;transition:color .3s}
.footer-col a:hover{color:#818cf8}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;font-size:.82rem;color:#52525b}
.footer-bottom a{color:#71717a;transition:color .3s}
.footer-bottom a:hover{color:#818cf8}
@media(max-width:768px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .footer-bottom{flex-direction:column;text-align:center}
}

/* ---------- Cookie Banner ---------- */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#0c0c10;color:#e4e4e7;padding:1.25rem 1.5rem;z-index:9998;transform:translateY(100%);transition:transform .4s;display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.cookie-banner.show{transform:translateY(0)}
.cookie-banner p{font-size:.85rem;color:#a1a1aa;margin-bottom:0;flex:1}
.cookie-banner p a{color:#818cf8;text-decoration:underline}
.cookie-banner .cookie-buttons{display:flex;gap:.75rem}

/* ---------- Scroll Reveal ---------- */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .7s,transform .7s}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}
.reveal-delay-4{transition-delay:.4s}

/* ---------- Back to Top ---------- */
.back-to-top{position:fixed;bottom:2rem;right:2rem;width:44px;height:44px;border-radius:12px;background:#4f46e5;color:#fff;display:flex;align-items:center;justify-content:center;z-index:900;opacity:0;visibility:hidden;transform:translateY(10px);transition:all .3s;box-shadow:0 4px 15px rgba(79,70,229,.3)}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:#4338ca;transform:translateY(-2px)}

/* ---------- Misc ---------- */
.text-center{text-align:center}
.mt-2{margin-top:2rem}
.mb-0{margin-bottom:0}
::selection{background:rgba(79,70,229,.15);color:#0c0c10}
