
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:"Segoe UI",Inter,Arial,sans-serif;color:#0f172a;background:#fff;line-height:1.7;font-size:16px}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1160px,92%);margin:auto}

/* ── TOPBAR ── */
.topbar{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.97);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid #e2e8f0;box-shadow:0 1px 12px rgba(15,23,42,.06)}
.nav{display:flex;align-items:center;justify-content:space-between;min-height:76px;gap:1.5rem}
.brand{display:flex;align-items:center;gap:.6rem}
.brand img{height:46px}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-name{font-size:1.05rem;font-weight:800;color:#0f172a;letter-spacing:-.3px}
.brand-tagline{font-size:.7rem;color:#2563eb;font-weight:600;letter-spacing:.8px;text-transform:uppercase}
.nav-menu{display:flex;gap:.2rem;list-style:none;align-items:center}
.nav-link{color:#475569;font-weight:600;font-size:.92rem;padding:.5rem .85rem;border-radius:8px;transition:all .18s}
.nav-link:hover{color:#2563eb;background:#eff6ff}
.nav-link.active{color:#2563eb;background:#eff6ff}
.nav-cta{background:#2563eb;color:#fff!important;padding:.55rem 1.3rem!important;border-radius:10px!important;font-weight:700!important}
.nav-cta:hover{background:#1d4ed8!important}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.4rem}
.hamburger span{width:24px;height:2px;background:#0f172a;border-radius:10px;transition:.25s}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ── BUTTONS ── */
.btn{display:inline-block;padding:.8rem 1.6rem;border-radius:10px;font-weight:700;font-size:.95rem;background:#2563eb;color:#fff;transition:all .2s;border:2px solid transparent}
.btn:hover{background:#1d4ed8;transform:translateY(-1px);box-shadow:0 6px 20px rgba(37,99,235,.3)}
.btn-white{background:#fff;color:#2563eb}
.btn-white:hover{background:#eff6ff;box-shadow:0 6px 20px rgba(37,99,235,.2)}
.btn-outline{display:inline-block;padding:.8rem 1.6rem;border-radius:10px;font-weight:700;font-size:.95rem;border:2px solid #e2e8f0;color:#0f172a;transition:all .2s;background:transparent}
.btn-outline:hover{border-color:#2563eb;color:#2563eb;background:#eff6ff}

/* ── HERO ── */
.hero{padding:96px 0 72px;background:linear-gradient(150deg,#eff6ff 0%,#f8faff 50%,#ffffff 100%);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-80px;right:-80px;width:500px;height:500px;background:radial-gradient(circle,rgba(37,99,235,.07) 0%,transparent 70%);pointer-events:none}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:3rem;align-items:center}
.eyebrow{display:inline-flex;align-items:center;gap:.5rem;background:#dbeafe;color:#1d4ed8;padding:.4rem .9rem;border-radius:999px;font-size:.82rem;font-weight:700;letter-spacing:.5px;text-transform:uppercase;margin-bottom:1.1rem}
.eyebrow::before{content:'';width:6px;height:6px;background:#2563eb;border-radius:50%}
.hero h1{font-size:clamp(2.2rem,4.2vw,4rem);line-height:1.06;font-weight:900;letter-spacing:-1.5px;color:#0f172a;margin-bottom:1.2rem}
.hero h1 .highlight{color:#2563eb}
.hero-desc{font-size:1.1rem;color:#475569;max-width:58ch;margin-bottom:1.8rem;line-height:1.75}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap;align-items:center}
.hero-trust{display:flex;align-items:center;gap:.6rem;margin-top:1.8rem;font-size:.88rem;color:#64748b}
.trust-dots{display:flex;gap:-.3rem}
.trust-dot{width:28px;height:28px;border-radius:50%;background:#dbeafe;border:2px solid #fff;display:grid;place-items:center;font-size:.65rem;font-weight:800;color:#1d4ed8}
.hero-img{border-radius:24px;box-shadow:0 32px 80px rgba(37,99,235,.14);border:1px solid #e2e8f0}
.hero-badge{background:#fff;border:1px solid #e2e8f0;border-radius:16px;padding:1rem 1.2rem;box-shadow:0 8px 24px rgba(15,23,42,.08);margin-top:1rem;display:inline-flex;align-items:center;gap:.75rem}
.badge-icon{width:40px;height:40px;background:#dbeafe;border-radius:10px;display:grid;place-items:center;font-size:1.2rem}

/* ── SECTIONS ── */
.section{padding:80px 0}
.section-sm{padding:48px 0}
.section-label{font-size:.78rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#2563eb;margin-bottom:.6rem}
.section-title{font-size:clamp(1.7rem,3vw,2.6rem);font-weight:800;line-height:1.15;letter-spacing:-.5px;margin-bottom:.8rem}
.section-intro{color:#475569;font-size:1.05rem;max-width:64ch;line-height:1.75;margin-bottom:2.5rem}
.subtle{background:#f8fafc}
.dark-section{background:#0f172a;color:#fff}

/* ── GRID ── */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem}

/* ── CARDS ── */
.card{background:#fff;border:1px solid #e8edf3;border-radius:20px;padding:1.75rem;box-shadow:0 2px 16px rgba(15,23,42,.04);transition:all .22s}
.card:hover{box-shadow:0 12px 40px rgba(37,99,235,.1);border-color:#bfdbfe;transform:translateY(-2px)}
.card-icon{width:56px;height:56px;margin-bottom:1.1rem}
.card h3{font-size:1.1rem;font-weight:700;margin-bottom:.6rem;color:#0f172a}
.card p{color:#64748b;font-size:.95rem;line-height:1.7}

/* ── STATS ── */
.stats-bar{background:linear-gradient(135deg,#1e3a8a,#2563eb);padding:56px 0;color:#fff}
.stat{text-align:center;padding:1.5rem}
.stat-number{font-size:2.8rem;font-weight:900;color:#fff;line-height:1}
.stat-plus{color:#93c5fd}
.stat-label{font-size:.88rem;color:#bfdbfe;margin-top:.4rem;font-weight:500;letter-spacing:.5px;text-transform:uppercase}
.stat-divider{width:1px;background:rgba(255,255,255,.12);margin:auto}

/* ── PROCESS ── */
.process-step{display:flex;gap:1.25rem;padding:1.4rem 0;border-bottom:1px solid #f1f5f9}
.process-step:last-child{border-bottom:none}
.step-num{min-width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,#2563eb,#1d4ed8);color:#fff;display:grid;place-items:center;font-weight:800;font-size:1rem;box-shadow:0 4px 12px rgba(37,99,235,.3)}
.step-content h4{font-size:1rem;font-weight:700;margin-bottom:.3rem}
.step-content p{color:#64748b;font-size:.93rem;line-height:1.65}

/* ── TAGS ── */
.tag-row{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:1rem}
.tag{background:#eff6ff;color:#1d4ed8;padding:.28rem .65rem;border-radius:999px;font-size:.77rem;font-weight:700;letter-spacing:.3px}

/* ── PORTFOLIO ── */
.portfolio-thumb{width:100%;height:210px;border-radius:14px;overflow:hidden;margin-bottom:1.1rem}
.portfolio-thumb img{width:100%;height:100%;object-fit:cover;transition:.3s}
.card:hover .portfolio-thumb img{transform:scale(1.03)}
.result-badge{display:inline-block;background:#dcfce7;color:#15803d;padding:.3rem .75rem;border-radius:999px;font-size:.8rem;font-weight:700;margin-bottom:.6rem}

/* ── TESTIMONIALS ── */
.stars{color:#f59e0b;font-size:1.1rem;margin-bottom:.75rem;letter-spacing:.5px}
.quote{font-size:1rem;color:#334155;line-height:1.75;font-style:italic;margin-bottom:1.1rem}
.reviewer strong{font-size:.95rem;color:#0f172a}
.reviewer span{font-size:.85rem;color:#64748b}
.slide{display:none}.slide.active{display:block}
.slider-btns{display:flex;gap:.8rem;margin-top:1.5rem}

/* ── FORM ── */
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.input,.textarea,.select{width:100%;padding:.9rem 1.1rem;border:1.5px solid #e2e8f0;border-radius:12px;font:inherit;font-size:.95rem;color:#0f172a;background:#fff;transition:.2s}
.input:focus,.textarea:focus,.select:focus{outline:none;border-color:#2563eb;box-shadow:0 0 0 3px rgba(37,99,235,.08)}
.textarea{min-height:150px;resize:vertical}
.notice{padding:.9rem 1.1rem;border-radius:10px;margin-top:1rem;font-size:.93rem;display:none}
.notice.success{background:#ecfdf5;color:#065f46;border:1px solid #a7f3d0}
.notice.error{background:#fef2f2;color:#991b1b;border:1px solid #fecaca}
.contact-detail{display:flex;align-items:flex-start;gap:.85rem;padding:.9rem 0;border-bottom:1px solid #f1f5f9}
.contact-detail:last-child{border:none}
.contact-icon{width:40px;height:40px;min-width:40px;background:#eff6ff;border-radius:10px;display:grid;place-items:center;color:#2563eb;font-size:1rem}
.contact-detail strong{display:block;font-size:.85rem;color:#94a3b8;font-weight:600;letter-spacing:.5px;text-transform:uppercase;margin-bottom:.15rem}
.contact-detail a,.contact-detail p{color:#0f172a;font-size:.95rem}
.contact-detail a:hover{color:#2563eb}

/* ── PRICING TABLE ── */
.table-wrap{overflow-x:auto;border-radius:16px;border:1px solid #e2e8f0}
.pricing-table{width:100%;border-collapse:collapse;min-width:520px}
.pricing-table thead tr{background:linear-gradient(135deg,#1e3a8a,#2563eb)}
.pricing-table th{padding:1.1rem 1.25rem;text-align:left;font-size:.85rem;font-weight:700;color:#fff;letter-spacing:.5px;text-transform:uppercase}
.pricing-table td{padding:1.1rem 1.25rem;border-bottom:1px solid #f1f5f9;font-size:.93rem;color:#334155}
.pricing-table tr:last-child td{border-bottom:none}
.pricing-table tr:hover td{background:#f8fafc}
.pricing-table td:first-child{font-weight:700;color:#0f172a}

/* ── CTA BANNER ── */
.cta-banner{background:linear-gradient(135deg,#1e3a8a 0%,#2563eb 100%);color:#fff;border-radius:28px;padding:4rem 3rem;text-align:center;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;top:-60px;right:-60px;width:300px;height:300px;background:rgba(255,255,255,.05);border-radius:50%}
.cta-banner h2{font-size:clamp(1.7rem,3vw,2.4rem);font-weight:800;margin-bottom:.7rem}
.cta-banner p{opacity:.85;font-size:1.05rem;max-width:56ch;margin:0 auto 2rem}

/* ── CHECK LIST ── */
.check-list{list-style:none;padding:0}
.check-list li{padding:.5rem 0;padding-left:1.6rem;position:relative;color:#334155;font-size:.95rem}
.check-list li::before{content:"✓";position:absolute;left:0;color:#16a34a;font-weight:800}

/* ── FOOTER ── */
.footer{background:#0f172a;color:#94a3b8}
.footer-top{padding:64px 0 40px}
.footer-grid{display:grid;grid-template-columns:2.2fr 1fr 1fr 1.4fr;gap:2.5rem}
.footer-brand img{height:42px;margin-bottom:1rem}
.footer-brand p{font-size:.93rem;line-height:1.7;color:#94a3b8;max-width:30ch}
.footer-social{display:flex;gap:.6rem;margin-top:1.2rem}
.social-btn{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,.07);color:#94a3b8;display:grid;place-items:center;font-size:.8rem;font-weight:800;transition:.2s;border:1px solid rgba(255,255,255,.08)}
.social-btn:hover{background:#2563eb;color:#fff;border-color:#2563eb}
.footer h4{color:#fff;font-size:.85rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:1.2rem}
.footer ul{list-style:none}
.footer ul li{margin:.5rem 0}
.footer ul a{color:#94a3b8;font-size:.9rem;transition:.2s}
.footer ul a:hover{color:#60a5fa}
.footer-contact-item{display:flex;align-items:flex-start;gap:.7rem;margin-bottom:.9rem}
.footer-contact-icon{width:30px;height:30px;min-width:30px;background:rgba(37,99,235,.2);border-radius:8px;display:grid;place-items:center;font-size:.8rem;color:#60a5fa}
.footer-contact-item p{font-size:.88rem;color:#94a3b8;line-height:1.5}
.footer-contact-item a{color:#94a3b8;font-size:.88rem}.footer-contact-item a:hover{color:#60a5fa}
.footer-divider{border:none;border-top:1px solid rgba(255,255,255,.06);margin:0}
.footer-bottom{padding:1.4rem 0}
.footer-bottom-row{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.8rem}
.footer-bottom-row p{font-size:.85rem;color:#64748b}
.footer-bottom-links{display:flex;gap:1.5rem}
.footer-bottom-links a{font-size:.83rem;color:#64748b;transition:.2s}.footer-bottom-links a:hover{color:#60a5fa}
.footer-badge{display:inline-flex;align-items:center;gap:.4rem;background:rgba(37,99,235,.15);border:1px solid rgba(37,99,235,.3);color:#60a5fa;padding:.35rem .85rem;border-radius:999px;font-size:.78rem;font-weight:600;margin-bottom:1.2rem}

/* ── MISC ── */
.muted{color:#64748b}
.about-photo img{border-radius:20px;box-shadow:0 20px 60px rgba(37,99,235,.12)}
.map-box{background:#eff6ff;border:1.5px solid #bfdbfe;border-radius:18px;padding:2rem;text-align:center}
.map-box p{color:#475569;margin:.4rem 0}
.client-logos{display:flex;flex-wrap:wrap;gap:1rem;align-items:center;margin-top:1.5rem}
.client-logo-wrap{background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:.6rem 1rem;display:flex;align-items:center}
.why-item{display:flex;align-items:flex-start;gap:1rem;padding:1rem;border-radius:14px;background:#f8fafc;border:1px solid #e8edf3;margin-bottom:.8rem}
.why-icon{min-width:40px;height:40px;background:#dbeafe;border-radius:10px;display:grid;place-items:center;font-size:1.1rem}
.why-item h4{font-size:.95rem;font-weight:700;margin-bottom:.25rem}
.why-item p{font-size:.88rem;color:#64748b;line-height:1.6}
.reveal{opacity:0;transform:translateY(22px);transition:all .6s ease}
.reveal.visible{opacity:1;transform:none}
#preloader{position:fixed;inset:0;background:#fff;display:grid;place-items:center;z-index:9999}
.loader{width:48px;height:48px;border:4px solid #dbeafe;border-top-color:#2563eb;border-radius:50%;animation:spin .75s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
