
/* ===== RESET & BASE ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#fff;--bg2:#f9f9f9;--bg3:#f0f0f0;
  --orange:#F97316;--orange2:#EA580C;--orange-light:#FFF7ED;
  --purple:#7C3AED;--purple2:#6D28D9;--purple-bg:#F5F3FF;
  --dark:#3C2415;--dark2:#2A1A0E;
  --text:#1a1a1a;--text-dim:#666;--text-muted:#999;
  --radius:12px;--radius-sm:8px;
  --font:'Segoe UI',system-ui,-apple-system,sans-serif;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font);background:var(--bg);color:var(--text);line-height:1.6;overflow-x:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
ul{list-style:none}
button{cursor:pointer;border:none;font-family:inherit}
input{font-family:inherit}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--orange);border-radius:3px}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}
@keyframes slideRight{from{transform:translateX(-100%)}to{transform:translateX(100%)}}

.animate-on-scroll{opacity:0;transform:translateY(40px);transition:opacity .8s ease,transform .8s ease}
.animate-on-scroll.visible{opacity:1;transform:translateY(0)}

/* ===== NAVBAR ===== */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;padding:16px 40px;display:flex;align-items:center;justify-content:space-between;transition:all .3s}
.navbar.scrolled{background:rgba(255,255,255,.95);backdrop-filter:blur(20px);box-shadow:0 2px 20px rgba(0,0,0,.06)}
.nav-logo{font-size:1.4rem;font-weight:800;color:var(--orange);display:flex;align-items:center;gap:6px}
.nav-logo .logo-circle{width:28px;height:28px;border-radius:50%;border:3px solid var(--orange);display:flex;align-items:center;justify-content:center}
.nav-logo .logo-circle::after{content:'';width:10px;height:10px;border-radius:50%;background:var(--orange)}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{font-size:.85rem;color:var(--text);transition:color .3s;font-weight:500}
.nav-links a:hover{color:var(--orange)}
.btn-talk{background:var(--orange);color:#fff;padding:10px 24px;border-radius:50px;font-size:.85rem;font-weight:600;transition:all .3s}
.btn-talk:hover{background:var(--orange2);transform:translateY(-2px);box-shadow:0 4px 15px rgba(249,115,22,.3)}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:24px;height:2px;background:var(--text);transition:all .3s}

/* ===== HERO ===== */
.hero{position:relative;height:100vh;min-height:550px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.hero-bg{position:absolute;top:0;left:0;right:0;bottom:0;
  /* AI Prompt: Modern office corridor with glass walls, warm natural lighting, shallow depth of field, professional business environment, architectural photography */
  background:url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=900&fit=crop') center/cover no-repeat}
.hero-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.45)}
.hero-content{position:relative;z-index:2;text-align:center;max-width:700px;padding:0 20px}
.hero-label{font-size:.8rem;color:var(--orange);text-transform:uppercase;letter-spacing:3px;font-weight:700;margin-bottom:16px}
.hero-content h1{font-size:clamp(2rem,4.5vw,3.2rem);font-weight:900;color:#fff;line-height:1.15;margin-bottom:20px}
.hero-content p{font-size:1rem;color:rgba(255,255,255,.8);margin-bottom:32px;max-width:520px;margin-left:auto;margin-right:auto;line-height:1.7}
.btn-hero{background:var(--purple);color:#fff;padding:14px 36px;border-radius:50px;font-size:.9rem;font-weight:600;display:inline-flex;align-items:center;gap:8px;transition:all .3s}
.btn-hero:hover{background:var(--purple2);transform:translateY(-2px);box-shadow:0 8px 25px rgba(124,58,237,.4)}
.hero-dots{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:2}
.hero-dots span{width:24px;height:3px;border-radius:2px;background:rgba(255,255,255,.3);cursor:pointer;transition:all .3s}
.hero-dots span.active{background:#fff;width:32px}
.hero-arrows{position:absolute;top:50%;transform:translateY(-50%);z-index:2;color:rgba(255,255,255,.5);font-size:1.5rem;cursor:pointer;transition:color .3s;padding:20px}
.hero-arrows:hover{color:#fff}
.hero-arrows.left{left:20px}
.hero-arrows.right{right:20px}

/* ===== SECTION COMMON ===== */
.section{padding:80px 40px}
.container{max-width:1200px;margin:0 auto}
.section-label{font-size:.75rem;color:var(--orange);text-transform:uppercase;letter-spacing:2px;margin-bottom:8px;display:block;font-weight:600;text-align:center}
.section-title{text-align:center;font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:12px}
.section-subtitle{text-align:center;font-size:.9rem;color:var(--text-dim);max-width:500px;margin:0 auto 40px}

/* ===== PARTNERS ===== */
.partners{padding:60px 40px;border-bottom:1px solid var(--bg3)}
.partners-inner{max-width:1200px;margin:0 auto;text-align:center}
.partners h3{font-size:1.4rem;font-weight:700;margin-bottom:32px}
.partners-logos{display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap}
.partner-logo{font-size:1.1rem;font-weight:700;color:var(--text-muted);opacity:.5;transition:opacity .3s;letter-spacing:1px}
.partner-logo:hover{opacity:1}

/* ===== CREATIVE TEAM / PROCESS ===== */
.process{padding:80px 40px;text-align:center}
.process-inner{max-width:1200px;margin:0 auto}
.process h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:12px}
.process .subtitle{font-size:.9rem;color:var(--text-dim);max-width:500px;margin:0 auto 48px}
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;position:relative}
.process-grid::before{content:'';position:absolute;top:40px;left:15%;right:15%;height:2px;background:var(--bg3);z-index:0}
.process-item{position:relative;z-index:1;text-align:center}
.process-icon{width:80px;height:80px;border-radius:50%;background:var(--orange-light);border:2px solid var(--orange);display:flex;align-items:center;justify-content:center;font-size:1.8rem;margin:0 auto 20px}
.process-item h4{font-size:1.1rem;font-weight:700;margin-bottom:10px}
.process-item p{font-size:.85rem;color:var(--text-dim);line-height:1.6;max-width:280px;margin:0 auto}

/* ===== SPECIALISTS ===== */
.specialists{padding:80px 40px}
.specialists-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.specialists-content h2{font-size:clamp(1.4rem,2.5vw,2rem);font-weight:800;line-height:1.3;margin-bottom:16px}
.specialists-content p{font-size:.9rem;color:var(--text-dim);line-height:1.7;margin-bottom:24px}
.specialists-buttons{display:flex;gap:12px;flex-wrap:wrap}
.btn-orange{background:var(--orange);color:#fff;padding:12px 28px;border-radius:50px;font-size:.85rem;font-weight:600;transition:all .3s}
.btn-orange:hover{background:var(--orange2);transform:translateY(-2px)}
.btn-outline{background:transparent;color:var(--text);padding:12px 28px;border-radius:50px;font-size:.85rem;font-weight:600;border:1px solid var(--bg3);transition:all .3s}
.btn-outline:hover{border-color:var(--orange);color:var(--orange)}
.specialists-image{text-align:center}
.specialists-image img{max-width:100%;border-radius:var(--radius)}

/* ===== SERVICES ===== */
.services{padding:80px 40px;text-align:center;background:var(--bg2)}
.services-inner{max-width:1200px;margin:0 auto}
.services h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:12px}
.services .subtitle{font-size:.9rem;color:var(--text-dim);max-width:500px;margin:0 auto 40px}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-bottom:32px}
.service-card{background:#fff;border-radius:var(--radius);padding:28px 24px;text-align:left;transition:all .4s;border:1px solid var(--bg3)}
.service-card:hover{border-color:var(--orange);box-shadow:0 8px 30px rgba(0,0,0,.06);transform:translateY(-4px)}
.service-card .sc-icon{width:44px;height:44px;border-radius:10px;background:var(--orange-light);display:flex;align-items:center;justify-content:center;font-size:1.2rem;margin-bottom:16px}
.service-card h4{font-size:1rem;font-weight:700;margin-bottom:8px}
.service-card p{font-size:.8rem;color:var(--text-dim);line-height:1.5}
.btn-see{background:transparent;border:1px solid var(--bg3);color:var(--text);padding:12px 32px;border-radius:50px;font-size:.85rem;font-weight:600;transition:all .3s}
.btn-see:hover{border-color:var(--orange);color:var(--orange)}

/* ===== PRICING ===== */
.pricing{padding:80px 40px;text-align:center}
.pricing-inner{max-width:1200px;margin:0 auto}
.pricing h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:12px}
.pricing .subtitle{font-size:.9rem;color:var(--text-dim);max-width:500px;margin:0 auto 40px}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pricing-card{background:#fff;border:2px solid var(--bg3);border-radius:var(--radius);padding:32px 24px;text-align:left;transition:all .4s;position:relative}
.pricing-card.featured{background:var(--purple);color:#fff;border-color:var(--purple)}
.pricing-card.featured .pc-feature{color:rgba(255,255,255,.8)}
.pricing-card.featured .pc-feature::before{color:rgba(255,255,255,.6)}
.pricing-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.1)}
.pricing-card .pc-badge{display:flex;align-items:center;gap:8px;margin-bottom:16px}
.pricing-card .pc-dot{width:10px;height:10px;border-radius:50%}
.pricing-card .pc-dot.orange{background:var(--orange)}
.pricing-card .pc-dot.white{background:#fff}
.pricing-card .pc-name{font-size:.85rem;font-weight:600}
.pricing-card h3{font-size:1.1rem;font-weight:800;margin-bottom:4px;line-height:1.3}
.pricing-card .pc-budget{font-size:.8rem;color:var(--text-muted);margin-bottom:20px}
.pricing-card.featured .pc-budget{color:rgba(255,255,255,.6)}
.pricing-card .pc-features{display:flex;flex-direction:column;gap:10px;margin-bottom:24px}
.pricing-card .pc-feature{font-size:.8rem;color:var(--text-dim);display:flex;align-items:center;gap:8px}
.pricing-card .pc-feature::before{content:'✓';color:var(--orange);font-weight:700;font-size:.75rem}
.pricing-card .pc-btn{width:100%;padding:12px;border-radius:50px;font-size:.85rem;font-weight:700;text-align:center;transition:all .3s}
.pricing-card .pc-btn.orange{background:var(--orange);color:#fff}
.pricing-card .pc-btn.orange:hover{background:var(--orange2)}
.pricing-card .pc-btn.white{background:#fff;color:var(--purple)}
.pricing-card .pc-btn.white:hover{background:var(--bg2)}

/* ===== TESTIMONIALS ===== */
.testimonials{padding:80px 40px;text-align:center;position:relative;overflow:hidden}
.testimonials::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;
  /* AI Prompt: Grid of diverse professional headshots, soft blue overlay, corporate team collage background, subtle and elegant */
  background:url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&h=600&fit=crop') center/cover no-repeat;opacity:.08}
.testimonials-inner{max-width:700px;margin:0 auto;position:relative;z-index:2}
.testimonials h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:12px}
.testimonials .subtitle{font-size:.9rem;color:var(--text-dim);margin-bottom:40px}
.testimonial-card{background:#fff;border-radius:var(--radius);padding:40px;box-shadow:0 8px 30px rgba(0,0,0,.08);text-align:center}
.testimonial-avatar{width:72px;height:72px;border-radius:50%;overflow:hidden;margin:0 auto 16px;border:3px solid var(--bg3)}
.testimonial-avatar img{width:100%;height:100%;object-fit:cover}
.testimonial-name{font-size:1rem;font-weight:700;margin-bottom:4px}
.testimonial-role{font-size:.8rem;color:var(--text-muted);margin-bottom:16px}
.testimonial-text{font-size:.9rem;color:var(--text-dim);line-height:1.7;font-style:italic}
.testimonial-dots{display:flex;justify-content:center;gap:8px;margin-top:24px}
.testimonial-dots span{width:8px;height:8px;border-radius:50%;background:var(--bg3);cursor:pointer;transition:all .3s}
.testimonial-dots span.active{background:var(--orange);width:24px;border-radius:4px}

/* ===== BLOG ===== */
.blog{padding:80px 40px;text-align:center}
.blog-inner{max-width:1200px;margin:0 auto}
.blog h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;margin-bottom:12px}
.blog .subtitle{font-size:.9rem;color:var(--text-dim);max-width:500px;margin:0 auto 40px}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:left}
.blog-card{border-radius:var(--radius);overflow:hidden;transition:all .4s}
.blog-card:hover{transform:translateY(-4px)}
.blog-card-img{height:200px;overflow:hidden;border-radius:var(--radius)}
.blog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.blog-card:hover .blog-card-img img{transform:scale(1.05)}
.blog-card-body{padding:16px 4px}
.blog-card-tag{font-size:.7rem;color:var(--orange);font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
.blog-card-body h3{font-size:1rem;font-weight:700;margin-bottom:8px;line-height:1.4}
.blog-card-body p{font-size:.8rem;color:var(--text-dim);line-height:1.5;margin-bottom:12px}
.blog-card-meta{display:flex;align-items:center;gap:8px;font-size:.75rem;color:var(--text-muted)}
.blog-card-meta .meta-avatar{width:24px;height:24px;border-radius:50%;overflow:hidden}
.blog-card-meta .meta-avatar img{width:100%;height:100%;object-fit:cover}

/* ===== FOOTER ===== */
.footer{background:var(--dark);color:rgba(255,255,255,.7);padding:60px 40px 30px}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-brand .footer-logo{font-size:1.3rem;font-weight:800;color:var(--orange);margin-bottom:12px;display:flex;align-items:center;gap:6px}
.footer-brand .footer-logo .logo-circle{width:24px;height:24px;border-radius:50%;border:2px solid var(--orange);display:flex;align-items:center;justify-content:center}
.footer-brand .footer-logo .logo-circle::after{content:'';width:8px;height:8px;border-radius:50%;background:var(--orange)}
.footer-brand p{font-size:.85rem;line-height:1.7;margin-bottom:16px}
.footer-col h4{font-size:.8rem;color:#fff;text-transform:uppercase;letter-spacing:2px;margin-bottom:20px;font-weight:700}
.footer-col a{display:block;font-size:.85rem;padding:4px 0;transition:color .3s}
.footer-col a:hover{color:var(--orange)}
.footer-social-row{display:flex;gap:12px;margin-top:8px}
.footer-social-row a{width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;font-size:.8rem;color:#fff;transition:all .3s}
.footer-social-row a:hover{background:var(--orange)}
.footer-bottom{padding-top:20px;border-top:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:.8rem}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .specialists-inner{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr 1fr}
  .pricing-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .navbar{padding:12px 20px}
  .nav-links{display:none;position:absolute;top:100%;left:0;right:0;background:rgba(255,255,255,.98);backdrop-filter:blur(20px);flex-direction:column;padding:20px;gap:16px;border-bottom:1px solid var(--bg3)}
  .nav-links.open{display:flex}
  .hamburger{display:flex}
  .hero{min-height:500px}
  .section{padding:60px 20px}
  .process-grid{grid-template-columns:1fr}
  .process-grid::before{display:none}
  .services-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .partners-logos{gap:24px}
}
