/* ============================================================
   TechIntegry — Page Styles (Homepage + About + shared)
   ============================================================ */

/* ── Shared Base ─────────────────────────────────────────────── */
.ti-hero,.ti-section,.ti-stats-bar,.ti-cta-section,
.ab-hero,.ab-section,.ab-stats,.ab-cta-section {
  font-family: 'Alexandria', system-ui, sans-serif;
}
.ti-container, .ab-container {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
}
.ti-section, .ab-section { padding: 96px 0; }
.ti-section-light { background: #FAFAFA; }

/* ── Shared Buttons ──────────────────────────────────────────── */
.ti-btn-solid,.ab-btn-solid {
  display: inline-flex; align-items: center;
  padding: 14px 32px; background: #3D3DE8; color: #fff;
  border-radius: 8px; font-weight: 600; font-size: .9375rem;
  box-shadow: 0 4px 16px rgba(61,61,232,.3);
  transition: all .2s; text-decoration: none;
}
.ti-btn-solid:hover,.ab-btn-solid:hover { background: #2C2CC4; transform: translateY(-2px); }
.ti-btn-ghost,.ab-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 32px; border: 1.5px solid #E5E5EF;
  color: #0D0D1A; border-radius: 8px; font-weight: 600;
  font-size: .9375rem; background: #fff; transition: all .2s; text-decoration: none;
}
.ti-btn-ghost:hover,.ab-btn-ghost:hover { border-color: #3D3DE8; color: #3D3DE8; }
.ti-btn-white,.ab-btn-white {
  display: inline-flex; align-items: center;
  padding: 14px 32px; background: #fff; color: #3D3DE8;
  border-radius: 8px; font-weight: 700; font-size: .9375rem;
  transition: all .2s; text-decoration: none;
}
.ti-btn-white:hover,.ab-btn-white:hover { background: #f0f0ff; transform: translateY(-2px); }
.ti-btn-outline-white,.ab-btn-outline {
  display: inline-flex; align-items: center;
  padding: 13px 32px; border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; border-radius: 8px; font-weight: 600;
  font-size: .9375rem; transition: all .2s; text-decoration: none;
}
.ti-btn-outline-white:hover,.ab-btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── Shared Section Headers ──────────────────────────────────── */
.ti-section-head,.ab-section-head { text-align: center; margin-bottom: 56px; }
.ti-label,.ab-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #3D3DE8; margin-bottom: 14px;
}
.ti-section-head h2,.ab-section-head h2 {
  font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 16px;
}
.ti-section-head p,.ab-section-head p {
  font-size: 1.0625rem; color: #6B6B80;
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* ── Shared Badges ───────────────────────────────────────────── */
.ti-badge,.ab-badge {
  display: inline-flex; padding: 6px 18px;
  background: #EEEEFF; color: #3D3DE8;
  border-radius: 100px; font-size: .8125rem;
  font-weight: 600; letter-spacing: .04em; margin-bottom: 24px;
}
.ti-badge-light {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}

/* ── Shared Arrow ────────────────────────────────────────────── */
.ti-arrow { color: #3D3DE8; font-size: 1.25rem; font-weight: 700; }

/* ============================================================
   HOMEPAGE — .ti-* classes
   ============================================================ */

/* Hero */
.ti-hero { padding: 100px 0 0; text-align: center; background: #fff; }
.ti-hero-inner { max-width: 760px; margin: 0 auto; padding: 0 24px 72px; }
.ti-hero-h1 {
  font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 24px;
}
.ti-hero-sub {
  font-size: 1.125rem; color: #6B6B80;
  line-height: 1.75; max-width: 620px; margin: 0 auto 40px;
}
.ti-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Feature Cards */
.ti-feat-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border-top: 1px solid #E5E5EF;
  max-width: 1160px; margin: 0 auto;
}
.ti-feat-card { padding: 40px 36px; border-right: 1px solid #E5E5EF; }
.ti-feat-card:last-child { border-right: none; }
.ti-feat-icon { margin-bottom: 20px; }
.ti-feat-icon svg { width: 72px; height: 72px; }
.ti-feat-card h3 { font-size: 1.0625rem; font-weight: 700; color: #0D0D1A; margin-bottom: 10px; }
.ti-feat-card p { font-size: .9375rem; color: #6B6B80; line-height: 1.65; }

/* Services Grid */
.ti-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.ti-service-card {
  padding: 36px; background: #fff; border: 1px solid #E5E5EF;
  border-radius: 16px; transition: all .25s; display: block; text-decoration: none;
}
.ti-service-card:hover {
  border-color: #3D3DE8;
  box-shadow: 0 8px 32px rgba(61,61,232,.12);
  transform: translateY(-3px);
}
.ti-service-icon {
  width: 52px; height: 52px; background: #EEEEFF;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.ti-service-card h3 { font-size: 1.125rem; font-weight: 700; color: #0D0D1A; margin-bottom: 10px; }
.ti-service-card p { font-size: .9375rem; color: #6B6B80; line-height: 1.65; margin-bottom: 20px; }
.ti-service-card:hover .ti-arrow { margin-left: 4px; }

/* Stats Bar */
.ti-stats-bar { background: #3D3DE8; padding: 64px 0; }
.ti-stats-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0;
}
.ti-stat-item { text-align: center; padding: 0 24px; }
.ti-stat-item strong {
  display: block; font-size: clamp(2rem,4vw,3rem);
  font-weight: 900; color: #fff; line-height: 1;
}
.ti-stat-item span { font-size: .9375rem; color: rgba(255,255,255,.7); margin-top: 8px; display: block; }
.ti-stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.2); }

/* Process */
.ti-process-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
}
.ti-process-card { padding: 28px; background: #FAFAFA; border: 1px solid #E5E5EF; border-radius: 14px; }
.ti-process-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #3D3DE8; padding: 0 8px; margin-top: 28px; opacity: .5;
}
.ti-process-num { font-size: 2rem; font-weight: 900; color: #3D3DE8; line-height: 1; margin-bottom: 12px; }
.ti-process-card h4 { font-size: .9375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 8px; }
.ti-process-card p { font-size: .875rem; color: #6B6B80; line-height: 1.65; }

/* Testimonials */
.ti-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ti-testi-card { padding: 32px; background: #fff; border: 1px solid #E5E5EF; border-radius: 16px; }
.ti-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.ti-testi-card > p {
  font-size: .9375rem; color: #2D2D3A; line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
}
.ti-testi-author { display: flex; align-items: center; gap: 12px; }
.ti-testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #EEEEFF; color: #3D3DE8; font-weight: 700;
  font-size: .875rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.ti-testi-author strong { display: block; font-size: .9375rem; font-weight: 700; color: #0D0D1A; }
.ti-testi-author span { font-size: .8125rem; color: #6B6B80; }

/* Projects */
.ti-projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.ti-projects-col { display: flex; flex-direction: column; gap: 24px; }
.ti-project-card {
  border-radius: 16px; overflow: hidden; border: 1px solid #E5E5EF;
  transition: all .25s; display: block; background: #fff; text-decoration: none;
}
.ti-project-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(61,61,232,.15); }
.ti-project-large { min-height: 300px; }
.ti-project-bg { height: 180px; }
.ti-project-large .ti-project-bg { height: 220px; }
.ti-project-content { padding: 24px; }
.ti-project-tag {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.7); margin-bottom: 10px; display: block;
}
.ti-project-large .ti-project-content { background: #3D3DE8; }
.ti-project-large h3 { color: #fff; font-size: 1.25rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.ti-project-large p { color: rgba(255,255,255,.75); font-size: .9375rem; line-height: 1.65; margin-bottom: 16px; }
.ti-project-link { font-size: .875rem; font-weight: 700; color: rgba(255,255,255,.9); }
.ti-project-card:not(.ti-project-large) h3 { color: #0D0D1A; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ti-project-card:not(.ti-project-large) p { color: #6B6B80; font-size: .875rem; line-height: 1.65; margin-bottom: 12px; }

/* Contact Form */
.ti-form-wrap { max-width: 720px; margin: 0 auto; }
.ti-contact-form { display: flex; flex-direction: column; gap: 20px; }
.ti-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ti-form-group { display: flex; flex-direction: column; gap: 8px; }
.ti-form-group label { font-size: .875rem; font-weight: 600; color: #0D0D1A; }
.ti-input {
  padding: 13px 16px; border: 1.5px solid #E5E5EF; border-radius: 10px;
  font-size: .9375rem; font-family: 'Alexandria', system-ui, sans-serif;
  color: #0D0D1A; background: #fff; outline: none;
  transition: border-color .2s; width: 100%; box-sizing: border-box;
}
.ti-input:focus { border-color: #3D3DE8; }
.ti-textarea { resize: vertical; min-height: 120px; }
select.ti-input { cursor: pointer; appearance: auto; }
.ti-form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: 10px; justify-content: center; margin-top: 4px; }

/* Partners Strip */
.ti-partners-section {
  padding: 44px 0; border-top: 1px solid #E5E5EF;
  border-bottom: 1px solid #E5E5EF; background: #fff;
}
.ti-partners-label {
  text-align: center; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #6B6B80; margin-bottom: 28px;
}

/* Blog */
.ti-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ti-blog-card {
  background: #fff; border: 1px solid #E5E5EF; border-radius: 16px;
  overflow: hidden; transition: all .25s; display: block; color: inherit; text-decoration: none;
}
.ti-blog-card:hover {
  border-color: #3D3DE8; box-shadow: 0 8px 32px rgba(61,61,232,.1); transform: translateY(-3px);
}
.ti-blog-img { height: 196px; background: linear-gradient(135deg,#EEEEFF 0%,#dddeff 100%); }
.ti-blog-body { padding: 24px; }
.ti-blog-body h3 { font-size: 1rem; font-weight: 700; color: #0D0D1A; line-height: 1.45; margin-bottom: 10px; }
.ti-blog-body p { font-size: .875rem; color: #6B6B80; line-height: 1.65; margin-bottom: 16px; }
.ti-blog-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8125rem; color: #6B6B80; border-top: 1px solid #E5E5EF; padding-top: 14px;
}
.ti-read { color: #3D3DE8; font-weight: 600; }

/* CTA Banner */
.ti-cta-section { padding: 96px 0; }
.ti-cta-box { background: #3D3DE8; border-radius: 24px; padding: 80px 56px; text-align: center; }
.ti-cta-box h2 {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 800;
  color: #fff; line-height: 1.2; letter-spacing: -.02em; margin: 16px 0;
}
.ti-cta-box p { font-size: 1.0625rem; color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.ti-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE — .ab-* classes
   ============================================================ */

/* Hero */
.ab-hero { padding: 96px 0 0; text-align: center; background: #fff; }
.ab-hero h1 {
  font-size: clamp(2rem,4.5vw,3.25rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 24px; max-width: 780px; margin-left: auto; margin-right: auto;
}
.ab-hero p { font-size: 1.0625rem; color: #6B6B80; line-height: 1.75; max-width: 680px; margin: 0 auto 36px; }
.ab-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }

/* Partners strip inside hero */
.ab-partners { border-top: 1px solid #E5E5EF; margin-top: 64px; padding: 36px 0; }
.ab-partners-label {
  text-align: center; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: #6B6B80; margin-bottom: 24px;
}

/* Images Section */
.ab-images-section { padding: 64px 0 0; }
.ab-images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ab-img-card { border-radius: 20px; overflow: hidden; }
.ab-img-placeholder {
  height: 320px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; border-radius: 20px;
}
.ab-img-mission { background: linear-gradient(135deg,#3D3DE8 0%,#2C2CC4 100%); }
.ab-img-vision { background: linear-gradient(135deg,#0D0D1A 0%,#1a1a40 100%); }
.ab-img-placeholder span {
  color: rgba(255,255,255,.8); font-size: 1.125rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}

/* Mission / Values */
.ab-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ab-mv-card { padding: 40px; background: #FAFAFA; border: 1px solid #E5E5EF; border-radius: 20px; }
.ab-mv-icon { margin-bottom: 20px; }
.ab-mv-card h3 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #3D3DE8; margin-bottom: 12px; }
.ab-mv-card h4 { font-size: 1.25rem; font-weight: 800; color: #0D0D1A; line-height: 1.3; margin-bottom: 16px; }
.ab-mv-card p { font-size: .9375rem; color: #6B6B80; line-height: 1.75; }

/* Stats */
.ab-stats { background: #3D3DE8; padding: 80px 0; text-align: center; }
.ab-label-light {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.6); margin-bottom: 16px;
}
.ab-stats h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.ab-stats p { color: rgba(255,255,255,.7); font-size: 1.0625rem; margin-bottom: 56px; }
.ab-stats-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; max-width: 900px; margin: 0 auto;
}
.ab-stat { text-align: center; padding: 0 16px; }
.ab-stat strong { display: block; font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 900; color: #fff; line-height: 1; }
.ab-stat span { font-size: .9375rem; color: rgba(255,255,255,.7); margin-top: 8px; display: block; }
.ab-stat-div { width: 1px; height: 64px; background: rgba(255,255,255,.2); }

/* Process */
.ab-process-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
}
.ab-process-card { padding: 28px; background: #FAFAFA; border: 1px solid #E5E5EF; border-radius: 14px; }
.ab-process-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #3D3DE8; padding: 0 8px; margin-top: 28px; opacity: .4;
}
.ab-pnum { font-size: 2rem; font-weight: 900; color: #3D3DE8; line-height: 1; margin-bottom: 12px; }
.ab-process-card h4 { font-size: .9375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 8px; }
.ab-process-card p { font-size: .875rem; color: #6B6B80; line-height: 1.65; }

/* Why Us */
.ab-why { background: #FAFAFA; }
.ab-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ab-why-card { padding: 32px 24px; background: #fff; border: 1px solid #E5E5EF; border-radius: 16px; transition: all .2s; }
.ab-why-card:hover { border-color: #3D3DE8; box-shadow: 0 4px 20px rgba(61,61,232,.1); }
.ab-why-icon { font-size: 2rem; margin-bottom: 16px; }
.ab-why-card h4 { font-size: .9375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 8px; }
.ab-why-card p { font-size: .875rem; color: #6B6B80; line-height: 1.65; }

/* Testimonials */
.ab-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ab-testi-card { padding: 32px; background: #fff; border: 1px solid #E5E5EF; border-radius: 16px; }
.ab-stars { color: #F59E0B; margin-bottom: 16px; font-size: 1rem; letter-spacing: 2px; }
.ab-testi-card > p { font-size: .9375rem; color: #2D2D3A; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.ab-testi-author { display: flex; align-items: center; gap: 12px; }
.ab-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #EEEEFF; color: #3D3DE8; font-weight: 700;
  font-size: .875rem; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.ab-testi-author strong { display: block; font-size: .9375rem; font-weight: 700; color: #0D0D1A; }
.ab-testi-author span { font-size: .8125rem; color: #6B6B80; }

/* CTA */
.ab-cta-section { padding: 96px 0; }
.ab-cta-box { background: #3D3DE8; border-radius: 24px; padding: 80px 56px; text-align: center; }
.ab-cta-box h2 {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 800;
  color: #fff; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 16px;
}
.ab-cta-box p { font-size: 1.0625rem; color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.ab-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICES HUB — .sv-* classes
   ============================================================ */

/* Font base */
.sv-hero,.sv-service-section,.sv-stats-section,
.sv-industries-section,.sv-cta-section {
  font-family: 'Alexandria', system-ui, sans-serif;
}

/* Container */
.sv-container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* Badges */
.sv-badge {
  display: inline-flex; padding: 6px 18px;
  background: #EEEEFF; color: #3D3DE8;
  border-radius: 100px; font-size: .8125rem;
  font-weight: 600; letter-spacing: .04em; margin-bottom: 24px;
}
.sv-badge-dark {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.sv-badge-white {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}

/* Hero */
.sv-hero {
  padding: 96px 0 80px; text-align: center;
  background: #fff; border-bottom: 1px solid #E5E5EF;
}
.sv-hero h1 {
  font-size: clamp(2.2rem,4.5vw,3.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.15; letter-spacing: -.02em;
  max-width: 800px; margin: 0 auto 20px;
}
.sv-hero p {
  font-size: 1.0625rem; color: #6B6B80;
  line-height: 1.75; max-width: 620px; margin: 0 auto 40px;
}
.sv-hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.sv-btn-solid {
  display: inline-flex; align-items: center;
  padding: 14px 32px; background: #3D3DE8; color: #fff;
  border-radius: 8px; font-weight: 600; font-size: .9375rem;
  box-shadow: 0 4px 16px rgba(61,61,232,.3);
  transition: all .2s; text-decoration: none;
}
.sv-btn-solid:hover { background: #2C2CC4; transform: translateY(-2px); }
.sv-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 32px; border: 1.5px solid #E5E5EF;
  color: #0D0D1A; border-radius: 8px; font-weight: 600;
  font-size: .9375rem; background: #fff; transition: all .2s; text-decoration: none;
}
.sv-btn-ghost:hover { border-color: #3D3DE8; color: #3D3DE8; }
.sv-btn-white {
  display: inline-flex; align-items: center;
  padding: 14px 32px; background: #fff; color: #3D3DE8;
  border-radius: 8px; font-weight: 700; font-size: .9375rem;
  transition: all .2s; text-decoration: none;
}
.sv-btn-white:hover { background: #f0f0ff; transform: translateY(-2px); }
.sv-btn-outline-white {
  display: inline-flex; align-items: center;
  padding: 13px 32px; border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; border-radius: 8px; font-weight: 600;
  font-size: .9375rem; transition: all .2s; text-decoration: none;
}
.sv-btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* Pill CTA Button */
.sv-pill-btn {
  display: inline-flex; align-items: center;
  padding: 11px 26px; background: #EEEEFF; color: #3D3DE8;
  border-radius: 100px; font-weight: 700; font-size: .9375rem;
  transition: all .2s; text-decoration: none; margin-top: 28px;
}
.sv-pill-btn:hover { background: #3D3DE8; color: #fff; }
.sv-pill-center { display: block; width: fit-content; margin: 40px auto 0; }

/* Section Head */
.sv-section-head { text-align: center; margin-bottom: 56px; }
.sv-section-head h2 {
  font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 16px;
}
.sv-section-head p {
  font-size: 1.0625rem; color: #6B6B80;
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

/* Service Sections */
.sv-service-section { padding: 96px 0; background: #fff; }
.sv-service-section.sv-alt { background: #FAFAFA; }

/* Service Row — alternating layout */
.sv-service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sv-service-row.sv-row-reverse .sv-service-img { order: 2; }
.sv-service-row.sv-row-reverse .sv-service-text { order: 1; }

/* Image Card (illustration placeholder) */
.sv-img-card {
  height: 400px; border-radius: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.sv-img-erp {
  background: linear-gradient(135deg,#f0f0ff 0%,#dddeff 100%);
  border: 1px solid #d0d0ff;
}
.sv-img-ai {
  background: linear-gradient(135deg,#eef4ff 0%,#d8e8ff 100%);
  border: 1px solid #c5d8ff;
}
.sv-img-workflow {
  background: linear-gradient(135deg,#f0f7ff 0%,#d4eaff 100%);
  border: 1px solid #b8daff;
}
.sv-img-custom {
  background: linear-gradient(135deg,#f5f0ff 0%,#e0d0ff 100%);
  border: 1px solid #cdb8ff;
}
.sv-img-card span {
  font-size: .9375rem; font-weight: 700; color: #2C40FF;
  letter-spacing: .04em; text-transform: uppercase;
}

/* Service Text */
.sv-service-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #3D3DE8; margin-bottom: 16px;
}
.sv-service-text h2 {
  font-size: clamp(1.5rem,2.8vw,2.25rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 20px;
}
.sv-service-text > p {
  font-size: 1rem; color: #6B6B80; line-height: 1.75; margin-bottom: 20px;
}

/* Feature List */
.sv-feature-list {
  list-style: none; padding: 0; margin: 0 0 8px;
  display: flex; flex-direction: column; gap: 12px;
}
.sv-feature-list li {
  font-size: .9375rem; color: #2D2D3A;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.55;
}
.sv-feature-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  background: #EEEEFF url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%233D3DE8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
  border-radius: 50%; margin-top: 2px;
}

/* Stats Section */
.sv-stats-section {
  background: linear-gradient(135deg,#2C40FF 0%,#1a2dd4 100%);
  padding: 96px 0; text-align: center;
}
.sv-stats-inner { text-align: center; }
.sv-stats-head { margin-bottom: 56px; }
.sv-stats-head h2 {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 800;
  color: #fff; line-height: 1.2; letter-spacing: -.02em;
  margin-bottom: 16px; margin-top: 8px;
}
.sv-stats-head p { font-size: 1.0625rem; color: rgba(255,255,255,.75); line-height: 1.7; }
.sv-stats-grid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; max-width: 900px; margin: 0 auto;
}
.sv-stat { text-align: center; padding: 0 24px; }
.sv-stat strong {
  display: block; font-size: clamp(2.25rem,4vw,3rem);
  font-weight: 900; color: #fff; line-height: 1;
}
.sv-stat span { font-size: .9375rem; color: rgba(255,255,255,.7); margin-top: 8px; display: block; }
.sv-stat-div { width: 1px; height: 60px; background: rgba(255,255,255,.2); }

/* Industries Section */
.sv-industries-section { padding: 96px 0; background: #fff; }
.sv-industries-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.sv-industry-card {
  padding: 32px; background: #fff; border: 1px solid #E5E5EF;
  border-radius: 16px; transition: all .25s;
  display: flex; gap: 20px; text-decoration: none; align-items: flex-start;
}
.sv-industry-card:hover {
  border-color: #3D3DE8;
  box-shadow: 0 8px 32px rgba(61,61,232,.1);
  transform: translateY(-3px);
}
.sv-industry-more { background: #FAFAFA; border-style: dashed; }
.sv-industry-icon {
  width: 52px; height: 52px; background: #EEEEFF;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.sv-industry-body h3 { font-size: 1rem; font-weight: 700; color: #0D0D1A; margin-bottom: 8px; }
.sv-industry-body p { font-size: .875rem; color: #6B6B80; line-height: 1.65; margin-bottom: 12px; }
.sv-industry-link { font-size: .875rem; font-weight: 700; color: #3D3DE8; }

/* CTA Section */
.sv-cta-section { padding: 96px 0; }
.sv-cta-box {
  background: #0D0D1A; border-radius: 24px;
  padding: 80px 56px; text-align: center;
}
.sv-cta-box h2 {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 800;
  color: #fff; line-height: 1.2; letter-spacing: -.02em; margin: 16px 0;
}
.sv-cta-box p {
  font-size: 1.0625rem; color: rgba(255,255,255,.7);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.7;
}
.sv-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICE DETAIL PAGES — .sd-* classes
   (ERP · AI Marketing · Workflow · Custom AI)
   ============================================================ */

.sd-hero,.sd-section,.sd-platforms-section,.sd-cta-section {
  font-family: 'Alexandria', system-ui, sans-serif;
}
.sd-container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* Badge */
.sd-badge {
  display: inline-flex; padding: 6px 18px;
  background: #EEEEFF; color: #3D3DE8;
  border-radius: 100px; font-size: .8125rem;
  font-weight: 600; letter-spacing: .04em; margin-bottom: 24px;
}

/* Hero */
.sd-hero {
  padding: 96px 0 0; text-align: center;
  background: #fff;
}
.sd-hero-inner { max-width: 800px; margin: 0 auto; padding: 0 32px 72px; }
.sd-hero h1 {
  font-size: clamp(2.2rem,4.5vw,3.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.sd-hero-sub {
  font-size: 1.0625rem; color: #6B6B80;
  line-height: 1.75; max-width: 680px; margin: 0 auto 48px;
}
.sd-hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 0;
}

/* Hero Highlight Cards (3-col strip) */
.sd-hero-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border-top: 1px solid #E5E5EF;
  max-width: 1160px; margin: 0 auto;
}
.sd-hero-card {
  padding: 36px 32px; border-right: 1px solid #E5E5EF; text-align: left;
}
.sd-hero-card:last-child { border-right: none; }
.sd-hero-card-num {
  font-size: clamp(2rem,4vw,2.75rem); font-weight: 900;
  color: #3D3DE8; line-height: 1; margin-bottom: 8px;
}
.sd-hero-card h4 { font-size: .9375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 6px; }
.sd-hero-card p { font-size: .875rem; color: #6B6B80; line-height: 1.6; margin: 0; }

/* Section label */
.sd-label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #3D3DE8; margin-bottom: 14px;
}
.sd-section-head { margin-bottom: 48px; }
.sd-section-head h2 {
  font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 14px;
}
.sd-section-head p {
  font-size: 1.0625rem; color: #6B6B80; max-width: 640px; line-height: 1.7;
}

/* Section */
.sd-section { padding: 96px 0; background: #fff; }
.sd-section-alt { background: #FAFAFA; }

/* Features grid (4 small cards) */
.sd-features-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px;
}
.sd-feature-card {
  padding: 28px 24px; background: #fff; border: 1px solid #E5E5EF;
  border-radius: 16px; transition: all .2s;
}
.sd-feature-card:hover {
  border-color: #3D3DE8; box-shadow: 0 4px 20px rgba(61,61,232,.1);
}
.sd-feature-icon {
  width: 44px; height: 44px; background: #EEEEFF;
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.sd-feature-card h4 { font-size: .9375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 8px; }
.sd-feature-card p { font-size: .875rem; color: #6B6B80; line-height: 1.65; }

/* Process grid (4 larger cards) */
.sd-process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px;
}
.sd-process-card {
  padding: 32px 24px; background: #fff; border: 1px solid #E5E5EF;
  border-radius: 16px; transition: all .2s;
}
.sd-process-card:hover {
  border-color: #3D3DE8; box-shadow: 0 4px 20px rgba(61,61,232,.1);
}
.sd-pnum {
  font-size: 2.5rem; font-weight: 900; color: #3D3DE8;
  line-height: 1; margin-bottom: 16px;
}
.sd-process-card h4 { font-size: .9375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 10px; }
.sd-process-card p { font-size: .875rem; color: #6B6B80; line-height: 1.7; }

/* Centered pill CTA */
.sd-pill-btn {
  display: inline-flex; align-items: center;
  padding: 12px 28px; background: #2C40FF; color: #fff;
  border-radius: 100px; font-weight: 700; font-size: .9375rem;
  transition: all .2s; text-decoration: none;
  box-shadow: 0 4px 16px rgba(44,64,255,.3);
}
.sd-pill-btn:hover { background: #1a2dd4; transform: translateY(-2px); }
.sd-pill-wrap { text-align: center; }

/* Platforms/Tech Section */
.sd-platforms-section { padding: 80px 0; background: #FAFAFA; }
.sd-platforms-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px;
}
.sd-platform-card {
  padding: 28px; background: #fff; border: 1px solid #E5E5EF;
  border-radius: 14px; display: flex; align-items: center; gap: 16px;
  transition: all .2s;
}
.sd-platform-card:hover { border-color: #3D3DE8; transform: translateY(-2px); }
.sd-platform-icon {
  width: 48px; height: 48px; background: #EEEEFF;
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1.25rem;
}
.sd-platform-card h4 { font-size: .9375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 4px; }
.sd-platform-card p { font-size: .8125rem; color: #6B6B80; }

/* Buttons */
.sd-btn-solid {
  display: inline-flex; align-items: center;
  padding: 14px 32px; background: #3D3DE8; color: #fff;
  border-radius: 8px; font-weight: 600; font-size: .9375rem;
  box-shadow: 0 4px 16px rgba(61,61,232,.3);
  transition: all .2s; text-decoration: none;
}
.sd-btn-solid:hover { background: #2C2CC4; transform: translateY(-2px); }
.sd-btn-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 32px; border: 1.5px solid #E5E5EF;
  color: #0D0D1A; border-radius: 8px; font-weight: 600;
  font-size: .9375rem; background: #fff; transition: all .2s; text-decoration: none;
}
.sd-btn-ghost:hover { border-color: #3D3DE8; color: #3D3DE8; }

/* CTA */
.sd-cta-section { padding: 96px 0; }
.sd-cta-box {
  background: linear-gradient(135deg,#2C40FF 0%,#1a2dd4 100%);
  border-radius: 24px; padding: 80px 56px; text-align: center;
  border: 2px solid #4C6BFF;
}
.sd-cta-box h2 {
  font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: 800;
  color: #fff; line-height: 1.2; letter-spacing: -.02em;
  margin: 16px 0;
}
.sd-cta-box p {
  font-size: 1.0625rem; color: rgba(255,255,255,.8);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.7;
}
.sd-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sd-btn-white {
  display: inline-flex; align-items: center;
  padding: 14px 32px; background: #fff; color: #2C40FF;
  border-radius: 100px; font-weight: 700; font-size: .9375rem;
  transition: all .2s; text-decoration: none;
}
.sd-btn-white:hover { background: #f0f0ff; transform: translateY(-2px); }
.sd-btn-outline-white {
  display: inline-flex; align-items: center;
  padding: 13px 32px; border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; border-radius: 100px; font-weight: 600;
  font-size: .9375rem; transition: all .2s; text-decoration: none;
}
.sd-btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ti-process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ti-process-arrow { display: none; }
  .ti-stats-grid { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .ti-stat-divider { display: none; }
  .ab-process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .ab-process-arrow { display: none; }
  .ab-stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ab-stat-div { display: none; }
  .ab-why-grid { grid-template-columns: repeat(2,1fr); }
  /* Services Hub */
  .sv-service-row { gap: 48px; }
  .sv-industries-grid { grid-template-columns: repeat(2,1fr); }
  .sv-stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .sv-stat-div { display: none; }
  /* Service Detail */
  .sd-features-grid { grid-template-columns: repeat(2,1fr); }
  .sd-process-grid { grid-template-columns: repeat(2,1fr); }
  .sd-platforms-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .ti-feat-row { grid-template-columns: 1fr; }
  .ti-feat-card { border-right: none; border-bottom: 1px solid #E5E5EF; }
  .ti-feat-card:last-child { border-bottom: none; }
  .ti-services-grid { grid-template-columns: 1fr; }
  .ti-testi-grid { grid-template-columns: 1fr; }
  .ti-blog-grid { grid-template-columns: 1fr; }
  .ti-form-row { grid-template-columns: 1fr; }
  .ti-cta-box { padding: 48px 24px; }
  .ti-container,.ab-container { padding: 0 20px; }
  .ti-section,.ab-section { padding: 64px 0; }
  .ti-projects-grid { grid-template-columns: 1fr; }
  .ab-images-grid { grid-template-columns: 1fr; }
  .ab-mv-grid { grid-template-columns: 1fr; }
  .ab-testi-grid { grid-template-columns: 1fr; }
  .ab-cta-box { padding: 48px 24px; }
  /* Services Hub */
  .sv-container { padding: 0 20px; }
  .sv-service-section { padding: 64px 0; }
  .sv-service-row { grid-template-columns: 1fr; gap: 40px; }
  .sv-service-row.sv-row-reverse .sv-service-img { order: -1; }
  .sv-service-row.sv-row-reverse .sv-service-text { order: 0; }
  .sv-img-card { height: 280px; }
  .sv-industries-grid { grid-template-columns: 1fr; }
  .sv-industry-card { flex-direction: column; }
  .sv-cta-box { padding: 48px 24px; }
  .sv-stats-section { padding: 64px 0; }
  .sv-industries-section { padding: 64px 0; }
  .sv-cta-section { padding: 64px 0; }
  /* Service Detail */
  .sd-container { padding: 0 20px; }
  .sd-hero-cards { grid-template-columns: 1fr; }
  .sd-hero-card { border-right: none; border-bottom: 1px solid #E5E5EF; }
  .sd-hero-card:last-child { border-bottom: none; }
  .sd-features-grid { grid-template-columns: 1fr; }
  .sd-process-grid { grid-template-columns: 1fr; }
  .sd-platforms-grid { grid-template-columns: 1fr; }
  .sd-section { padding: 64px 0; }
  .sd-cta-box { padding: 48px 24px; }
  .sd-cta-section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .ti-stats-grid { grid-template-columns: 1fr; }
  .ab-why-grid { grid-template-columns: 1fr; }
  .ab-stats-grid { grid-template-columns: 1fr; }
  /* Services Hub */
  .sv-stats-grid { grid-template-columns: 1fr; }
  /* Service Detail */
  .sd-features-grid { grid-template-columns: 1fr; }
  .sd-process-grid { grid-template-columns: 1fr; }
  .sd-platforms-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ARABIC / RTL SUPPORT  (html[lang="ar"])
   ============================================================ */

/* ── Language toggle helpers ─────────────────────────────────── */
.ti-ar { display: none; }
.ti-en { display: inline; }
html[lang="ar"] .ti-ar { display: inline; }
html[lang="ar"] .ti-en { display: none !important; }
.ti-ar-block { display: none; }
.ti-en-block { display: block; }
html[lang="ar"] .ti-ar-block { display: block; }
html[lang="ar"] .ti-en-block { display: none !important; }

/* ── Global RTL ──────────────────────────────────────────────── */
html[lang="ar"] body { direction: rtl; text-align: right; }

/* ── Flip flex rows ──────────────────────────────────────────── */
html[lang="ar"] .ti-hero-btns,
html[lang="ar"] .ab-hero-btns,
html[lang="ar"] .sd-hero-btns,
html[lang="ar"] .sd-cta-btns,
html[lang="ar"] .sv-hero-btns,
html[lang="ar"] .sv-pill-btns { flex-direction: row-reverse; }

/* ── Card text ───────────────────────────────────────────────── */
html[lang="ar"] .ti-feat-card,
html[lang="ar"] .sd-feature-card,
html[lang="ar"] .sd-process-card,
html[lang="ar"] .sd-platform-card { text-align: right; }

/* ── Fix card borders ────────────────────────────────────────── */
html[lang="ar"] .ti-feat-card { border-right:none; border-left:1px solid #E5E5EF; }
html[lang="ar"] .sd-hero-card { border-right:none; border-left:1px solid #E5E5EF; }
html[lang="ar"] .sd-hero-card:last-child { border-left:none; }

/* ── Service rows ────────────────────────────────────────────── */
html[lang="ar"] .sv-service-row { flex-direction: row-reverse; }
html[lang="ar"] .sv-service-row.sv-row-reverse { flex-direction: row; }

/* ── Industries hub ──────────────────────────────────────────── */
html[lang="ar"] .ind-inner { direction: rtl; }
html[lang="ar"] .ind-inner.reverse { direction: ltr; }
html[lang="ar"] .ind-text,
html[lang="ar"] .ind-partners-text { text-align: right; }

/* ── Platform icons ──────────────────────────────────────────── */
html[lang="ar"] .sd-feature-icon,
html[lang="ar"] .sd-platform-icon { margin-right:0; margin-left:16px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
html[lang="ar"] .ind-faq-q { flex-direction: row-reverse; }
html[lang="ar"] .ind-faq-head { text-align: center; }

/* ── Language switcher states ────────────────────────────────── */
.ti-lang-en, .ti-lang-ar { font-weight:600; text-decoration:none; color:#2C40FF; }
html[lang="ar"]          .ti-lang-en { color:#999; font-weight:400; }
html:not([lang="ar"])    .ti-lang-ar { color:#999; font-weight:400; }
}


/* ============================================================
   CONTENT PAGES — Shared helpers (cp-*)
   Used by blog, news, projects, case studies
   ============================================================ */
.cp-badge {
  display: inline-block; background: #EEEEFF; color: #3D3DE8;
  border-radius: 30px; padding: 6px 18px; font-size: .8125rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: .01em;
}
.cp-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  font-family: 'Alexandria', system-ui, sans-serif;
}
.cp-hero { padding: 80px 0 56px; }
.cp-center { text-align: center; }
.cp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.875rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.15; margin-bottom: 20px;
}
.cp-lead {
  font-size: 1.0625rem; color: #6B6B80; line-height: 1.75; max-width: 680px;
}
.cp-center .cp-lead { margin: 0 auto; }
.cp-section-head {
  font-size: 1.375rem; font-weight: 700; color: #0D0D1A; margin-bottom: 36px;
}
.cp-cta-banner {
  background: #3D3DE8; border-radius: 20px;
  padding: 80px 48px; text-align: center; margin-bottom: 80px;
}
.cp-cta-banner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.cp-cta-banner p {
  color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: 36px;
  max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.cp-cta-btn {
  display: inline-flex; align-items: center; padding: 14px 36px;
  background: #fff; color: #3D3DE8; border-radius: 8px;
  font-weight: 700; font-size: .9375rem; text-decoration: none; transition: all .2s;
}
.cp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ============================================================
   BLOG HUB (.blg-*)
   ============================================================ */
.blg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  padding-bottom: 72px;
}
.blg-card {
  border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid #EBEBF2; text-decoration: none;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.blg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
.blg-card-img { width: 100%; height: 220px; background: #F2F2F7; overflow: hidden; }
.blg-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blg-card-body { padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.blg-card-body h3 {
  font-size: 1.0625rem; font-weight: 700; color: #0D0D1A;
  margin-bottom: 12px; line-height: 1.4;
}
.blg-card-body p { color: #6B6B80; font-size: .875rem; line-height: 1.65; flex: 1; margin-bottom: 20px; }
.blg-card-foot { display: flex; align-items: center; justify-content: space-between; }
.blg-card-date { font-size: .8125rem; color: #9B9BAD; }
.blg-read-link { font-size: .875rem; font-weight: 600; color: #3D3DE8; }

/* ============================================================
   ARTICLE TEMPLATE — blog/news single (.art-*)
   ============================================================ */
.art-wrap { max-width: 820px; margin: 0 auto; padding: 0 32px 80px; font-family: 'Alexandria', system-ui, sans-serif; }
.art-hero { padding: 72px 0 40px; }
.art-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.2; margin-bottom: 20px;
}
.art-subtitle { font-size: 1.1875rem; color: #6B6B80; line-height: 1.7; margin-bottom: 0; }
.art-feat-img { width: 100%; border-radius: 16px; margin: 40px 0 48px; display: block; }
.art-content h2 { font-size: 1.5rem; font-weight: 800; color: #0D0D1A; margin: 48px 0 16px; }
.art-content h3 { font-size: 1.25rem; font-weight: 700; color: #0D0D1A; margin: 36px 0 12px; }
.art-content p { font-size: 1rem; color: #2D2D3A; line-height: 1.85; margin-bottom: 20px; }
.art-content ul, .art-content ol { margin: 0 0 20px 28px; color: #2D2D3A; font-size: 1rem; line-height: 1.8; }
.art-content li { margin-bottom: 8px; }
.art-content strong { font-weight: 700; }
.art-content a { color: #3D3DE8; }
.art-content blockquote {
  border-left: 4px solid #3D3DE8; margin: 32px 0; padding: 20px 28px;
  background: #F7F7FF; border-radius: 0 12px 12px 0;
  font-size: 1.0625rem; color: #0D0D1A; font-style: italic; line-height: 1.75;
}
.art-content blockquote cite { display: block; font-size: .875rem; color: #6B6B80; margin-top: 10px; font-style: normal; font-weight: 600; }
.art-item-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 24px 0 32px; }
.art-item-grid p { font-size: .875rem; color: #2D2D3A; line-height: 1.65; margin: 0; }

/* ============================================================
   NEWS HUB (.nws-*)
   ============================================================ */
.nws-section { padding-bottom: 72px; }
.nws-item {
  display: grid; grid-template-columns: 100px 1fr 2fr; gap: 32px;
  align-items: start; padding: 36px 0; border-bottom: 1px solid #EBEBF2;
}
.nws-item:first-of-type { border-top: 1px solid #EBEBF2; }
.nws-date { font-size: .875rem; color: #9B9BAD; padding-top: 4px; }
.nws-img { border-radius: 12px; overflow: hidden; background: #F2F2F7; width: 100%; height: 200px; }
.nws-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nws-body { display: flex; flex-direction: column; gap: 16px; }
.nws-body h3 { font-size: 1.125rem; font-weight: 700; color: #0D0D1A; line-height: 1.4; margin: 0; }
.nws-body p { color: #6B6B80; font-size: .9rem; line-height: 1.65; margin: 0; }
.nws-body-foot { display: flex; align-items: center; justify-content: space-between; }
.nws-body-date { font-size: .8125rem; color: #9B9BAD; }
.nws-read-link { font-size: .875rem; font-weight: 600; color: #3D3DE8; text-decoration: none; }

/* ============================================================
   PROJECTS HUB (.prj-*)
   ============================================================ */
.prj-section { padding-bottom: 72px; }
.prj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prj-card {
  border-radius: 16px; overflow: hidden; background: #fff;
  border: 1px solid #EBEBF2; text-decoration: none;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.prj-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
.prj-img { width: 100%; height: 240px; background: #F2F2F7; overflow: hidden; }
.prj-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prj-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.prj-body h3 { font-size: 1.0625rem; font-weight: 700; color: #0D0D1A; line-height: 1.4; margin: 0; }
.prj-body p { color: #6B6B80; font-size: .875rem; line-height: 1.65; flex: 1; margin: 0; }
.prj-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.prj-tag { font-size: .8125rem; font-weight: 600; color: #3D3DE8; }
.prj-link { font-size: .875rem; font-weight: 600; color: #3D3DE8; }
.prj-load-wrap { text-align: center; padding: 48px 0 72px; }
.prj-load-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px;
  background: #3D3DE8; color: #fff; border-radius: 8px;
  font-weight: 600; text-decoration: none; transition: all .2s;
}
.prj-load-btn:hover { background: #2C2CC4; transform: translateY(-2px); }

/* ============================================================
   CASE STUDY SINGLE (.cs-*)
   ============================================================ */
.cs-wrap { max-width: 1000px; margin: 0 auto; padding: 0 32px; font-family: 'Alexandria', system-ui, sans-serif; }
.cs-hero { padding: 72px 0 48px; text-align: center; }
.cs-hero h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 800;
  color: #0D0D1A; line-height: 1.2; margin-bottom: 16px;
}
.cs-hero p { font-size: 1.0625rem; color: #6B6B80; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.cs-meta-bar {
  border: 1px solid #EBEBF2; border-radius: 16px; padding: 40px 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; margin-bottom: 64px;
}
.cs-meta-col { padding: 0 24px; }
.cs-meta-col + .cs-meta-col { border-left: 1px solid #EBEBF2; }
.cs-meta-icon { font-size: 1.625rem; margin-bottom: 12px; display: block; }
.cs-meta-label { font-size: .75rem; color: #9B9BAD; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.cs-meta-value { font-size: 1.125rem; font-weight: 700; color: #0D0D1A; }
.cs-content { max-width: 800px; margin: 0 auto; padding-bottom: 80px; }
.cs-content h2 { font-size: 1.5rem; font-weight: 800; color: #0D0D1A; margin: 0 0 20px; }
.cs-content h3 { font-size: 1.25rem; font-weight: 700; color: #0D0D1A; margin: 40px 0 16px; }
.cs-content p { color: #2D2D3A; font-size: 1rem; line-height: 1.85; margin-bottom: 20px; }
.cs-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.cs-tag { font-size: .8125rem; font-weight: 500; color: #3D3DE8; text-decoration: none; }

/* ============================================================
   RESOURCES HUB (.rsc-*)
   ============================================================ */
.rsc-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; font-family: 'Alexandria', system-ui, sans-serif; }
.rsc-hero { padding: 80px 0 56px; text-align: center; }
.rsc-badge { display: inline-block; background: #EEEEFF; color: #3D3DE8; border-radius: 30px; padding: 6px 18px; font-size: .8125rem; font-weight: 600; margin-bottom: 20px; }
.rsc-hero h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; color: #0D0D1A; margin-bottom: 20px; }
.rsc-hero p { font-size: 1.0625rem; color: #6B6B80; max-width: 640px; margin: 0 auto; line-height: 1.75; }
.rsc-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 80px; }
.rsc-card {
  border: 1px solid #EBEBF2; border-radius: 16px; padding: 36px 20px;
  text-align: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.rsc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: #3D3DE8; }
.rsc-card-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.rsc-card h3 { font-size: 1rem; font-weight: 700; color: #0D0D1A; margin: 0; }
.rsc-card p { font-size: .8125rem; color: #6B6B80; margin: 0; line-height: 1.5; }
.rsc-cta {
  background: #3D3DE8; border-radius: 20px; padding: 80px 48px;
  text-align: center; margin-bottom: 80px;
}
.rsc-cta h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.rsc-cta p {
  color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.rsc-cta-btn {
  display: inline-flex; align-items: center; padding: 14px 36px;
  background: #fff; color: #3D3DE8; border-radius: 8px; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.rsc-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ============================================================
   FAQS PAGE (.faq-*)
   ============================================================ */
.faq-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; font-family: 'Alexandria', system-ui, sans-serif; }
.faq-hero { padding: 80px 0 56px; text-align: center; }
.faq-badge { display: inline-block; background: #EEEEFF; color: #3D3DE8; border-radius: 30px; padding: 6px 18px; font-size: .8125rem; font-weight: 600; margin-bottom: 20px; }
.faq-hero h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; color: #0D0D1A; margin-bottom: 20px; }
.faq-hero p { font-size: 1.0625rem; color: #6B6B80; max-width: 640px; margin: 0 auto; line-height: 1.75; }
.faq-tabs-wrap { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.faq-tab-btn {
  padding: 10px 24px; border-radius: 30px; font-size: .9rem; font-weight: 500;
  cursor: pointer; border: 1.5px solid #E5E5EF; background: #fff; color: #6B6B80;
  transition: all .2s; font-family: 'Alexandria', system-ui, sans-serif;
}
.faq-tab-btn.active { background: #3D3DE8; color: #fff; border-color: #3D3DE8; }
.faq-tab-btn:hover:not(.active) { border-color: #3D3DE8; color: #3D3DE8; }
.faq-panel { display: none; }
.faq-panel.active { display: block; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #EBEBF2; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; gap: 20px; user-select: none;
}
.faq-q-text { font-size: 1.0625rem; font-weight: 600; color: #0D0D1A; }
.faq-q-icon { flex-shrink: 0; font-size: 1.375rem; font-weight: 300; color: #6B6B80; line-height: 1; width: 24px; text-align: center; }
.faq-a { padding: 0 0 24px; font-size: .9375rem; color: #6B6B80; line-height: 1.75; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-clients {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 40px; padding: 56px 0;
  border-top: 1px solid #EBEBF2; border-bottom: 1px solid #EBEBF2;
  margin: 32px 0 72px;
}
.faq-client-img { height: 32px; width: auto; opacity: .45; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.faq-client-img:hover { opacity: 1; filter: none; }
.faq-cta {
  background: #3D3DE8; border-radius: 20px; padding: 72px 48px;
  text-align: center; margin-bottom: 80px;
}
.faq-cta h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 16px; }
.faq-cta p {
  color: rgba(255,255,255,.8); font-size: 1.0625rem; margin-bottom: 32px;
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.faq-cta-btn {
  display: inline-flex; align-items: center; padding: 14px 36px;
  background: #fff; color: #3D3DE8; border-radius: 8px; font-weight: 700;
  text-decoration: none; transition: all .2s;
}
.faq-cta-btn:hover { transform: translateY(-2px); }

/* ============================================================
   GLOSSARY PAGE (.gls-*)
   ============================================================ */
.gls-wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; font-family: 'Alexandria', system-ui, sans-serif; }
.gls-hero { padding: 80px 0 56px; text-align: center; }
.gls-badge { display: inline-block; background: #EEEEFF; color: #3D3DE8; border-radius: 30px; padding: 6px 18px; font-size: .8125rem; font-weight: 600; margin-bottom: 20px; }
.gls-hero h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; color: #0D0D1A; margin-bottom: 20px; }
.gls-hero p { font-size: 1.0625rem; color: #6B6B80; max-width: 640px; margin: 0 auto; line-height: 1.75; }
.gls-list { max-width: 820px; margin: 0 auto; padding-bottom: 80px; }
.gls-item { border-bottom: 1px solid #EBEBF2; }
.gls-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; gap: 20px; user-select: none;
}
.gls-q-text { font-size: 1.125rem; font-weight: 700; color: #0D0D1A; }
.gls-q-icon { flex-shrink: 0; font-size: 1.375rem; font-weight: 300; color: #6B6B80; line-height: 1; width: 24px; text-align: center; }
.gls-a { padding: 0 0 24px; font-size: .9375rem; color: #6B6B80; line-height: 1.75; display: none; }
.gls-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.gls-tag { padding: 4px 14px; background: #EEEEFF; color: #3D3DE8; border-radius: 20px; font-size: .8125rem; font-weight: 500; }
.gls-item.open .gls-a { display: block; }

/* ============================================================
   404 PAGE (.e404-*)
   ============================================================ */
.e404-wrap {
  min-height: calc(100vh - 140px); display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 80px 32px;
  font-family: 'Alexandria', system-ui, sans-serif;
}
.e404-inner { max-width: 600px; }
.e404-badge { display: inline-block; background: #EEEEFF; color: #3D3DE8; border-radius: 30px; padding: 6px 18px; font-size: .8125rem; font-weight: 600; margin-bottom: 24px; }
.e404-inner h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); font-weight: 800; color: #0D0D1A; margin-bottom: 20px; line-height: 1.2; }
.e404-inner p { font-size: 1.0625rem; color: #6B6B80; line-height: 1.75; margin-bottom: 40px; }
.e404-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.e404-btn-solid {
  display: inline-flex; align-items: center; padding: 14px 32px;
  background: #3D3DE8; color: #fff; border-radius: 8px; font-weight: 600;
  text-decoration: none; box-shadow: 0 4px 16px rgba(61,61,232,.3); transition: all .2s;
}
.e404-btn-solid:hover { background: #2C2CC4; transform: translateY(-2px); }
.e404-btn-ghost {
  display: inline-flex; align-items: center; padding: 13px 32px;
  border: 1.5px solid #E5E5EF; color: #0D0D1A; border-radius: 8px;
  font-weight: 600; background: #fff; text-decoration: none; transition: all .2s;
}
.e404-btn-ghost:hover { border-color: #3D3DE8; color: #3D3DE8; }

/* ============================================================
   RESPONSIVE — New content pages
   ============================================================ */
@media (max-width: 900px) {
  .blg-grid { grid-template-columns: repeat(2, 1fr); }
  .prj-grid { grid-template-columns: repeat(2, 1fr); }
  .rsc-cards { grid-template-columns: repeat(3, 1fr); }
  .nws-item { grid-template-columns: 80px 1fr; }
  .nws-img { display: none; }
  .cs-meta-bar { grid-template-columns: 1fr; }
  .cs-meta-col + .cs-meta-col { border-left: none; border-top: 1px solid #EBEBF2; padding-top: 24px; margin-top: 24px; }
  .art-item-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blg-grid, .prj-grid { grid-template-columns: 1fr; }
  .rsc-cards { grid-template-columns: repeat(2, 1fr); }
  .nws-item { grid-template-columns: 1fr; }
  .nws-date { display: none; }
  .art-item-grid { grid-template-columns: 1fr; }
  .cp-cta-banner, .rsc-cta, .faq-cta { padding: 48px 24px; }
  .art-wrap, .cs-wrap, .cp-wrap, .faq-wrap, .gls-wrap, .rsc-wrap { padding: 0 20px; }
  .cp-hero { padding: 56px 0 40px; }
}

/* ============================================================
   RTL — New content pages
   ============================================================ */
html[lang="ar"] .blg-card-foot,
html[lang="ar"] .nws-body-foot,
html[lang="ar"] .prj-foot { flex-direction: row-reverse; }
html[lang="ar"] .nws-item { direction: rtl; }
html[lang="ar"] .faq-q, html[lang="ar"] .gls-q { flex-direction: row-reverse; }
html[lang="ar"] .faq-tabs-wrap { direction: rtl; }
html[lang="ar"] .gls-tags, html[lang="ar"] .cs-tags { direction: rtl; }
html[lang="ar"] .cs-meta-bar { direction: rtl; }
html[lang="ar"] .cs-meta-col + .cs-meta-col { border-left: none; border-right: 1px solid #EBEBF2; }
html[lang="ar"] .art-content { direction: rtl; text-align: right; }
html[lang="ar"] .e404-actions { flex-direction: row-reverse; }
html[lang="ar"] .rsc-cta p, html[lang="ar"] .faq-cta p, html[lang="ar"] .cp-cta-banner p { direction: rtl; }
