/* ── SERVICES PAGE ── */
.services-hero {
    background: #080f1e;
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.services-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(29,78,216,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29,78,216,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}
.services-hero-orb {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(29,78,216,0.35) 0%, transparent 70%);
    filter: blur(40px);
}
.services-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.services-hero h1 { font-size: clamp(2.4rem,5vw,3.8rem); font-weight:900; color:#fff; letter-spacing:-1.5px; margin-bottom:20px; line-height:1.1; }
.services-hero p { font-size:1.1rem; color:rgba(255,255,255,0.6); line-height:1.8; max-width:580px; margin:0 auto 36px; }

/* service category tabs */
.svc-tabs {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 60px; padding: 0 24px;
}
.svc-tab {
    padding: 10px 22px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 600; cursor: pointer;
    border: 1.5px solid #e2e8f0; background: white; color: #334155;
    transition: all 0.2s;
}
.svc-tab:hover, .svc-tab.active { background: #1d4ed8; border-color: #1d4ed8; color: white; }

/* service category sections */
.svc-category { padding: 80px 0; border-bottom: 1px solid #f1f5f9; }
.svc-category:last-child { border-bottom: none; }
.svc-category-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 56px; }
.svc-category-header h2 { font-size: clamp(1.6rem,2.5vw,2.4rem); font-weight:800; color:#0f172a; letter-spacing:-0.5px; }
.svc-category-header p { font-size:1rem; color:#64748b; line-height:1.8; }
.svc-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-item {
    background: white; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px 24px;
    transition: all 0.25s; cursor: default;
}
.svc-item:hover { border-color: #bfdbfe; box-shadow: 0 12px 36px rgba(29,78,216,0.09); transform: translateY(-3px); }
.svc-item-icon { font-size: 1.6rem; margin-bottom: 14px; }
.svc-item h3 { font-size: 0.95rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.svc-item p { font-size: 0.82rem; color: #64748b; line-height: 1.65; }

/* ── CUSTOMERS PAGE ── */
.customers-hero {
    background: #080f1e; padding: 130px 0 90px; position: relative; overflow: hidden; text-align: center;
}
.customers-hero-grid { position: absolute; inset: 0;
    background-image: linear-gradient(rgba(29,78,216,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(29,78,216,0.06) 1px, transparent 1px);
    background-size: 60px 60px; }
.customers-hero-orb { position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(99,102,241,0.35) 0%, transparent 70%); filter: blur(40px); }
.customers-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.customers-hero h1 { font-size: clamp(2.4rem,5vw,3.8rem); font-weight:900; color:#fff; letter-spacing:-1.5px; margin-bottom:20px; }
.customers-hero p { font-size:1.1rem; color:rgba(255,255,255,0.6); line-height:1.8; max-width:580px; margin:0 auto; }

/* filter */
.filter-bar { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-bottom:48px; padding:0 24px; }
.filter-btn { padding:8px 20px; border-radius:100px; font-size:0.82rem; font-weight:600; cursor:pointer;
    border:1.5px solid #e2e8f0; background:white; color:#334155; transition:all 0.2s; }
.filter-btn:hover, .filter-btn.active { background:#1d4ed8; border-color:#1d4ed8; color:white; }

/* case grid large */
.cases-large { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-lg-card { background:white; border:1px solid #e2e8f0; border-radius:20px; overflow:hidden; transition:all 0.3s; cursor:pointer; }
.case-lg-card:hover { transform:translateY(-6px); box-shadow:0 20px 56px rgba(29,78,216,0.12); border-color:#bfdbfe; }
.case-lg-img { height:180px; display:flex; align-items:center; justify-content:center; font-size:3rem; }
.case-lg-body { padding:24px; }
.case-lg-body .tag-row { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.case-lg-body h3 { font-size:0.9rem; font-weight:700; color:#0f172a; line-height:1.45; margin-bottom:8px; }
.case-lg-body p { font-size:0.8rem; color:#64748b; line-height:1.6; }
.case-lg-body .view-link { display:inline-flex; align-items:center; gap:5px; margin-top:14px; font-size:0.82rem; font-weight:600; color:#1d4ed8; }
.case-lg-body .view-link:hover { gap:9px; }

/* testimonials strip */
.testimonials-strip { background:#080f1e; padding:80px 0; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.testimonial-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:18px; padding:32px; }
.testimonial-card blockquote { font-size:0.9rem; color:rgba(255,255,255,0.75); line-height:1.75; font-style:italic; margin-bottom:20px; }
.testimonial-card cite { font-style:normal; font-size:0.8rem; font-weight:600; color:#60a5fa; }

/* ── COMPANY PAGE ── */
.company-hero { background:#080f1e; padding:130px 0 90px; position:relative; overflow:hidden; text-align:center; }
.company-hero-grid { position:absolute; inset:0;
    background-image:linear-gradient(rgba(29,78,216,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(29,78,216,0.06) 1px,transparent 1px);
    background-size:60px 60px; }
.company-hero-orb { position:absolute; top:-200px; left:50%; transform:translateX(-50%);
    width:700px; height:400px; background:radial-gradient(ellipse,rgba(16,185,129,0.25) 0%,transparent 70%); filter:blur(40px); }
.company-hero-inner { position:relative; z-index:1; max-width:760px; margin:0 auto; padding:0 24px; }
.company-hero h1 { font-size:clamp(2.4rem,5vw,3.8rem); font-weight:900; color:#fff; letter-spacing:-1.5px; margin-bottom:20px; }
.company-hero p { font-size:1.1rem; color:rgba(255,255,255,0.6); line-height:1.8; max-width:580px; margin:0 auto; }

.value-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px; }
.value-card { background:white; border:1px solid #e2e8f0; border-radius:20px; padding:36px 28px; transition:all 0.3s; }
.value-card:hover { border-color:#bfdbfe; box-shadow:0 16px 48px rgba(29,78,216,0.1); transform:translateY(-4px); }
.value-icon { font-size:2rem; margin-bottom:16px; }
.value-card h3 { font-size:1.05rem; font-weight:700; color:#0f172a; margin-bottom:10px; }
.value-card p { font-size:0.875rem; color:#64748b; line-height:1.7; }

.offices-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:48px; }
.office-card { background:white; border:1px solid #e2e8f0; border-radius:20px; padding:32px; transition:all 0.25s; }
.office-card:hover { border-color:#bfdbfe; box-shadow:0 12px 36px rgba(29,78,216,0.08); }
.office-flag { font-size:2rem; margin-bottom:14px; }
.office-card h3 { font-size:1.1rem; font-weight:700; color:#0f172a; margin-bottom:14px; }
.office-card p { font-size:0.875rem; color:#64748b; line-height:1.7; margin-bottom:6px; }

/* ── CAREERS PAGE ── */
.careers-hero { background:#080f1e; padding: 130px 0 90px; position:relative; overflow:hidden; text-align:center; }
.careers-hero-grid { position:absolute; inset:0;
    background-image:linear-gradient(rgba(29,78,216,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(29,78,216,0.06) 1px,transparent 1px);
    background-size:60px 60px; }
.careers-hero-orb { position:absolute; top:-200px; left:50%; transform:translateX(-50%);
    width:700px; height:400px; background:radial-gradient(ellipse,rgba(245,158,11,0.2) 0%,transparent 70%); filter:blur(40px); }
.careers-hero-inner { position:relative; z-index:1; max-width:760px; margin:0 auto; padding:0 24px; }
.careers-hero h1 { font-size:clamp(2.4rem,5vw,3.8rem); font-weight:900; color:#fff; letter-spacing:-1.5px; margin-bottom:20px; }
.careers-hero p { font-size:1.1rem; color:rgba(255,255,255,0.6); line-height:1.8; max-width:580px; margin:0 auto; }

.perks-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:48px; }
.perk-card { background:white; border:1px solid #e2e8f0; border-radius:16px; padding:28px; text-align:center; transition:all 0.25s; }
.perk-card:hover { border-color:#bfdbfe; box-shadow:0 12px 36px rgba(29,78,216,0.08); transform:translateY(-3px); }
.perk-icon { font-size:2rem; margin-bottom:12px; }
.perk-card h3 { font-size:0.95rem; font-weight:700; color:#0f172a; margin-bottom:8px; }
.perk-card p { font-size:0.82rem; color:#64748b; line-height:1.6; }

.jobs-list { display:flex; flex-direction:column; gap:12px; margin-top:48px; }
.job-row { display:flex; align-items:center; justify-content:space-between;
    background:white; border:1px solid #e2e8f0; border-radius:16px; padding:24px 28px;
    transition:all 0.2s; cursor: pointer; }
.job-row:hover { border-color:#bfdbfe; box-shadow:0 8px 24px rgba(29,78,216,0.08); }
.job-info h3 { font-size:0.95rem; font-weight:700; color:#0f172a; margin-bottom:6px; }
.job-meta { display:flex; gap:12px; }
.job-meta span { font-size:0.75rem; color:#64748b; background:#f8fafc; border:1px solid #e2e8f0; border-radius:100px; padding:3px 10px; }

/* ── CONTACT PAGE ── */
.contact-hero { background:#080f1e; padding:110px 0 70px; position:relative; overflow:hidden; }
.contact-hero-grid { position:absolute; inset:0;
    background-image:linear-gradient(rgba(29,78,216,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(29,78,216,0.06) 1px,transparent 1px);
    background-size:60px 60px; }
.contact-hero-orb { position:absolute; top:-100px; right:-100px;
    width:500px; height:500px; background:radial-gradient(ellipse,rgba(29,78,216,0.3) 0%,transparent 70%); filter:blur(40px); }
.contact-hero-inner { position:relative; z-index:1; max-width:1240px; margin:0 auto; padding:0 24px; }
.contact-hero h1 { font-size:clamp(2.4rem,5vw,3.6rem); font-weight:900; color:#fff; letter-spacing:-1.5px; margin-bottom:16px; }
.contact-hero p { font-size:1rem; color:rgba(255,255,255,0.6); line-height:1.8; }

.contact-layout { display:grid; grid-template-columns:1fr 480px; gap:60px; align-items:start; }
.contact-steps { display:flex; flex-direction:column; gap:24px; margin-bottom:48px; }
.contact-step { display:flex; gap:16px; align-items:flex-start; }
.step-num { width:36px; height:36px; background:rgba(29,78,216,0.15); border:1px solid rgba(29,78,216,0.3);
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-size:0.8rem; font-weight:700; color:#60a5fa; flex-shrink:0; }
.step-text h3 { font-size:0.9rem; font-weight:700; color:rgba(255,255,255,0.9); margin-bottom:4px; }
.step-text p { font-size:0.82rem; color:rgba(255,255,255,0.5); line-height:1.6; }

.contact-form-card { background:white; border-radius:24px; padding:40px; box-shadow:0 24px 64px rgba(0,0,0,0.15); }
.contact-form-card h2 { font-size:1.4rem; font-weight:800; color:#0f172a; margin-bottom:6px; }
.contact-form-card > p { font-size:0.875rem; color:#64748b; margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:18px; display:flex; flex-direction:column; }
.form-group label { font-size:0.8rem; font-weight:600; color:#334155; margin-bottom:6px; }
.form-group input, .form-group textarea, .form-group select {
    padding:12px 16px; border:1.5px solid #e2e8f0; border-radius:10px;
    font-size:0.875rem; font-family:inherit; color:#0f172a; background:white;
    transition:border-color 0.2s; outline:none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color:#1d4ed8; box-shadow:0 0 0 3px rgba(29,78,216,0.08); }
.form-group textarea { resize:vertical; min-height:100px; }
.form-submit { width:100%; padding:14px; border-radius:100px; background:#1d4ed8; color:white;
    font-size:0.95rem; font-weight:700; border:none; cursor:pointer; transition:all 0.2s; font-family:inherit; }
.form-submit:hover { background:#1e3a8a; box-shadow:0 8px 24px rgba(29,78,216,0.35); transform:translateY(-1px); }

.offices-row { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:48px; }
.office-mini { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.09); border-radius:16px; padding:24px; }
.office-mini h3 { font-size:0.85rem; font-weight:700; color:white; margin-bottom:10px; }
.office-mini p { font-size:0.78rem; color:rgba(255,255,255,0.5); line-height:1.7; }

/* ── BLOG PAGE ── */
.blog-hero { background:#080f1e; padding:130px 0 90px; position:relative; overflow:hidden; text-align:center; }
.blog-hero-grid { position:absolute; inset:0;
    background-image:linear-gradient(rgba(29,78,216,0.06) 1px,transparent 1px),linear-gradient(90deg,rgba(29,78,216,0.06) 1px,transparent 1px);
    background-size:60px 60px; }
.blog-hero-orb { position:absolute; top:-200px; left:50%; transform:translateX(-50%);
    width:700px; height:400px; background:radial-gradient(ellipse,rgba(99,102,241,0.3) 0%,transparent 70%); filter:blur(40px); }
.blog-hero-inner { position:relative; z-index:1; max-width:760px; margin:0 auto; padding:0 24px; }
.blog-hero h1 { font-size:clamp(2.4rem,5vw,3.8rem); font-weight:900; color:#fff; letter-spacing:-1.5px; margin-bottom:20px; }
.blog-hero p { font-size:1.1rem; color:rgba(255,255,255,0.6); line-height:1.8; max-width:580px; margin:0 auto; }

.blog-featured { display:grid; grid-template-columns:1.4fr 1fr; gap:24px; margin-bottom:48px; }
.blog-card-featured { background:white; border:1px solid #e2e8f0; border-radius:20px; overflow:hidden; transition:all 0.3s; cursor:pointer; }
.blog-card-featured:hover { transform:translateY(-4px); box-shadow:0 20px 56px rgba(29,78,216,0.1); border-color:#bfdbfe; }
.blog-img-tall { height:300px; display:flex; align-items:center; justify-content:center; font-size:4rem; }
.blog-img-short { height:160px; display:flex; align-items:center; justify-content:center; font-size:3rem; }
.blog-card-body { padding:24px; }
.blog-card-featured .blog-card-body { padding:28px; }
.blog-meta { display:flex; gap:12px; align-items:center; margin-bottom:12px; }
.blog-cat { font-size:0.7rem; font-weight:700; color:#1d4ed8; background:#eff6ff; border:1px solid #bfdbfe;
    border-radius:100px; padding:3px 10px; letter-spacing:0.3px; }
.blog-date { font-size:0.75rem; color:#94a3b8; }
.blog-card-body h2, .blog-card-body h3 { font-weight:700; color:#0f172a; line-height:1.4; margin-bottom:10px; }
.blog-card-featured .blog-card-body h2 { font-size:1.2rem; }
.blog-card-body h3 { font-size:0.9rem; }
.blog-card-body p { font-size:0.85rem; color:#64748b; line-height:1.65; }
.read-more { display:inline-flex; align-items:center; gap:5px; margin-top:14px; font-size:0.82rem; font-weight:600; color:#1d4ed8; transition:gap 0.2s; }
.read-more:hover { gap:9px; }

.blog-side { display:flex; flex-direction:column; gap:16px; }
.blog-card-sm { background:white; border:1px solid #e2e8f0; border-radius:16px; overflow:hidden; display:flex; transition:all 0.25s; cursor:pointer; }
.blog-card-sm:hover { border-color:#bfdbfe; box-shadow:0 8px 24px rgba(29,78,216,0.08); }
.blog-card-sm .blog-img-sq { width:100px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:2rem; }
.blog-card-sm .blog-card-body { padding:16px; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.blog-card { background:white; border:1px solid #e2e8f0; border-radius:18px; overflow:hidden; transition:all 0.3s; cursor:pointer; }
.blog-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(29,78,216,0.1); border-color:#bfdbfe; }
.blog-card .blog-img { height:180px; display:flex; align-items:center; justify-content:center; font-size:3rem; }

/* ── SHARED COMPONENTS (used across inner pages) ── */
.engage-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.engage-card { border:1px solid #e2e8f0; border-radius:20px; padding:36px 28px; background:white; transition:all 0.3s; }
.engage-card:hover { border-color:#bfdbfe; box-shadow:0 16px 48px rgba(29,78,216,0.1); transform:translateY(-4px); }
.engage-num { font-size:3.5rem; font-weight:900; color:#eff6ff; line-height:1; margin-bottom:12px; letter-spacing:-2px; }
.engage-card h3 { font-size:1.1rem; font-weight:700; color:#0f172a; margin-bottom:12px; }
.engage-card p { font-size:0.875rem; color:#64748b; line-height:1.7; }

.cta-band { background:linear-gradient(135deg,#1d4ed8 0%,#4f46e5 100%); padding:100px 24px; text-align:center; position:relative; overflow:hidden; }
.cta-band-grid { position:absolute; inset:0;
    background-image:linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);
    background-size:60px 60px; }
.cta-band-inner { position:relative; z-index:1; max-width:680px; margin:0 auto; }
.cta-band h2 { font-size:clamp(2rem,4vw,3rem); font-weight:900; color:white; margin-bottom:18px; letter-spacing:-1px; line-height:1.1; }
.cta-band p { font-size:1.1rem; color:rgba(255,255,255,0.75); margin-bottom:40px; line-height:1.7; }
.btn-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

.tech-badge { padding:10px 18px; border:1px solid #e2e8f0; border-radius:100px; font-size:0.85rem; font-weight:600; color:#334155; background:white; transition:all 0.2s; }
.tech-badge:hover { border-color:#1d4ed8; color:#1d4ed8; background:#eff6ff; }

@media (max-width:1024px) {
    .engage-grid { grid-template-columns:repeat(2,1fr); }
    .svc-items { grid-template-columns:repeat(2,1fr); }
    .cases-large { grid-template-columns:repeat(2,1fr); }
    .testimonials-grid { grid-template-columns:repeat(2,1fr); }
    .value-grid { grid-template-columns:repeat(2,1fr); }
    .perks-grid { grid-template-columns:repeat(2,1fr); }
    .blog-featured { grid-template-columns:1fr; }
    .blog-grid { grid-template-columns:repeat(2,1fr); }
    .contact-layout { grid-template-columns:1fr; }
    .offices-row { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
    .svc-category-header { grid-template-columns:1fr; }
    .offices-grid { grid-template-columns:1fr; }
    .cases-large { grid-template-columns:1fr; }
    .testimonials-grid { grid-template-columns:1fr; }
    .offices-row { grid-template-columns:repeat(2,1fr); }
    .form-row { grid-template-columns:1fr; }
}
@media (max-width:600px) {
    .engage-grid { grid-template-columns:1fr; }
    .perks-grid { grid-template-columns:1fr; }
    .value-grid { grid-template-columns:1fr; }
    .blog-grid { grid-template-columns:1fr; }
    .offices-row { grid-template-columns:1fr; }
}
