/* ================================================================
   INCLOVER SOLUTIONS — DESIGN SYSTEM
   Azure Cloud Modernisation Consultancy
   Version 1.0
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  --ink:        #0A0E1A;
  --ink-mid:    #111827;
  --ink-light:  #1F2937;
  --azure:      #0078D4;
  --azure-dark: #005a9e;
  --azure-dim:  #004578;
  --cyan:       #50E6FF;
  --cyan-dim:   #28C6E8;
  --white:      #FFFFFF;
  --cloud:      #F0F4F8;
  --mist:       #E2E8F0;
  --silver:     #94A3B8;
  --slate:      #64748B;
  --text:       #1E293B;
  --success:    #107C10;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w:      1160px;
  --max-w-text: 760px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: var(--azure); text-decoration: none; }
a:hover { color: var(--azure-dark); }
ul { list-style: none; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--text { max-width: var(--max-w-text); margin: 0 auto; padding: 0 24px; }

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-hero { display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: center; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo-mark svg { width: 36px; height: 36px; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; line-height: 1.1; }
.nav__logo-name span { color: var(--cyan); }
.nav__logo-sub { font-size: 9.5px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--silver); margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav__link.active { color: var(--cyan); }
.nav__cta {
  background: var(--azure); color: var(--white);
  font-size: 13.5px; font-weight: 600;
  padding: 9px 20px; border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap; margin-left: 12px;
}
.nav__cta:hover { background: var(--azure-dark); color: var(--white); transform: translateY(-1px); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ================================================================
   HERO — HOMEPAGE
   ================================================================ */
.hero {
  background: var(--ink);
  padding: 96px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% 50%, rgba(0,120,212,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(80,230,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,120,212,0.12); border: 1px solid rgba(0,120,212,0.3);
  color: var(--cyan); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 28px;
}
.hero__eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero__heading em { font-style: normal; color: var(--cyan); }
.hero__sub {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 560px; line-height: 1.75; margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--azure); color: var(--white);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,120,212,0.35);
}
.btn-primary:hover { background: var(--azure-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,120,212,0.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-azure {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--azure); color: var(--white);
  font-size: 14px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.btn-azure:hover { background: var(--azure-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--azure);
  border: 2px solid var(--azure);
  font-size: 14px; font-weight: 600;
  padding: 11px 24px; border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--azure); color: var(--white); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--azure);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-sm);
  transition: background 0.15s, transform 0.15s;
}
.btn-white:hover { background: var(--cloud); color: var(--azure-dark); transform: translateY(-1px); }

/* Hero diagram */
.hero__diagram {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 380px;
}
.diagram-bg {
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,120,212,0.1) 0%, transparent 70%);
  border: 1px solid rgba(0,120,212,0.15);
  position: absolute;
  animation: spin-slow 40s linear infinite;
}
.diagram-bg-2 {
  width: 260px; height: 260px; border-radius: 50%;
  background: transparent;
  border: 1px dashed rgba(80,230,255,0.15);
  position: absolute;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hub-node {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 40px rgba(0,120,212,0.6);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.hub-node::after {
  content: ''; width: 80px; height: 80px;
  border: 2px solid rgba(0,120,212,0.3);
  border-radius: 50%; position: absolute;
  animation: ring-pulse 2.5s ease-out infinite;
}
@keyframes ring-pulse { 0%{transform:scale(0.9);opacity:0.8} 100%{transform:scale(1.5);opacity:0} }
.spoke-node {
  position: absolute; width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--ink-mid); border: 1px solid rgba(0,120,212,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
}
.spoke-node--top    { top: 20px; left: 50%; transform: translateX(-50%); }
.spoke-node--bottom { bottom: 20px; left: 50%; transform: translateX(-50%); }
.spoke-node--left   { left: 20px; top: 50%; transform: translateY(-50%); }
.spoke-node--right  { right: 20px; top: 50%; transform: translateY(-50%); }
.spoke-node--tl { top: 52px; left: 52px; }
.spoke-node--tr { top: 52px; right: 52px; }
.spoke-node--bl { bottom: 52px; left: 52px; }
.spoke-node--br { bottom: 52px; right: 52px; }
.spoke-line {
  position: absolute; background: rgba(0,120,212,0.3);
  transform-origin: center;
}
.metric-card {
  position: absolute; z-index: 3;
  background: rgba(17,24,39,0.95);
  border: 1px solid rgba(0,120,212,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
.metric-card__num { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--cyan); line-height: 1; }
.metric-card__label { font-size: 11px; color: var(--silver); margin-top: 3px; }
.metric-card--tl { top: 30px; left: -10px; }
.metric-card--br { bottom: 40px; right: -10px; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--ink-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
}
.trust-bar__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--silver); white-space: nowrap; margin-right: 32px;
  padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-bar__items { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-bar__item {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s;
}
.trust-bar__item:hover { color: rgba(255,255,255,0.7); }
.trust-bar__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,120,212,0.15); border: 1px solid rgba(0,120,212,0.3);
  color: var(--cyan); font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 4px; letter-spacing: 0.5px;
}

/* ================================================================
   SECTION STYLES
   ================================================================ */
.section { padding: 88px 0; }
.section--dark { background: var(--ink); }
.section--mid  { background: var(--ink-mid); }
.section--cloud{ background: var(--cloud); }
.section--white{ background: var(--white); }

.section__eyebrow {
  display: inline-block;
  color: var(--azure); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section__eyebrow--light { color: var(--cyan); }

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--ink);
  line-height: 1.15; letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.section__heading--light { color: var(--white); }
.section__heading em { font-style: normal; color: var(--azure); }
.section__heading--light em { color: var(--cyan); }

.section__intro {
  font-size: 17px; color: var(--slate);
  max-width: 600px; line-height: 1.75;
  margin-bottom: 52px;
}
.section__intro--light { color: rgba(255,255,255,0.6); }

.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center .section__intro { margin-left: auto; margin-right: auto; }

/* ================================================================
   STATS ROW
   ================================================================ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--mist); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { background: var(--white); padding: 36px 28px; text-align: center; }
.stat-item--dark { background: var(--ink-light); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800; color: var(--azure);
  line-height: 1; letter-spacing: -1px;
}
.stat-num--light { color: var(--cyan); }
.stat-label { font-size: 13px; color: var(--slate); margin-top: 8px; line-height: 1.4; }
.stat-label--light { color: rgba(255,255,255,0.55); }

/* ================================================================
   SERVICE CARDS
   ================================================================ */
.service-card {
  background: var(--white); border: 1px solid var(--mist);
  border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(0,120,212,0.2); }
.service-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(0,120,212,0.08); border: 1px solid rgba(0,120,212,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px; flex-shrink: 0;
}
.service-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.service-card__desc { font-size: 14px; color: var(--slate); line-height: 1.7; flex: 1; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--azure); font-size: 13px; font-weight: 600;
  margin-top: 20px; transition: gap 0.2s;
}
.service-card__link:hover { gap: 10px; }
.service-card--dark { background: var(--ink-light); border-color: rgba(255,255,255,0.06); }
.service-card--dark .service-card__title { color: var(--white); }
.service-card--dark .service-card__desc { color: rgba(255,255,255,0.55); }
.service-card--dark .service-card__icon { background: rgba(0,120,212,0.2); border-color: rgba(0,120,212,0.3); }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius-lg); transition: box-shadow 0.2s; }
.why-item:hover { box-shadow: var(--shadow); }
.why-item__icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(0,120,212,0.08); border: 1px solid rgba(0,120,212,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-item__title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.why-item__desc { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ================================================================
   PROCESS STEPS
   ================================================================ */
.process-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-wrap::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--azure), var(--cyan));
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--azure); color: var(--white);
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 0 0 6px rgba(0,120,212,0.12), 0 0 0 12px rgba(0,120,212,0.05);
}
.process-step__title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.process-step__title--light { color: var(--white); }
.process-step__desc { font-size: 13px; color: var(--slate); line-height: 1.6; }
.process-step__desc--light { color: rgba(255,255,255,0.55); }

/* ================================================================
   CASE STUDY CARDS
   ================================================================ */
.cs-card { background: var(--ink-mid); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.cs-card:hover { border-color: rgba(0,120,212,0.3); box-shadow: 0 8px 32px rgba(0,120,212,0.12); }
.cs-card__top { padding: 32px 32px 24px; }
.cs-card__tag { display: inline-block; background: rgba(0,120,212,0.15); border: 1px solid rgba(0,120,212,0.25); color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; text-transform: uppercase; margin-bottom: 16px; }
.cs-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.cs-card__desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.cs-card__stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.06); }
.cs-stat { padding: 20px 24px; border-right: 1px solid rgba(255,255,255,0.06); }
.cs-stat:last-child { border-right: none; }
.cs-stat__num { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--cyan); line-height: 1; }
.cs-stat__label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; line-height: 1.3; }
.cs-card__link { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; border-top: 1px solid rgba(255,255,255,0.06); color: var(--azure); font-size: 13px; font-weight: 600; transition: background 0.2s; }
.cs-card__link:hover { background: rgba(0,120,212,0.08); color: var(--cyan); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-item { border-bottom: 1px solid var(--mist); }
.faq-item:first-child { border-top: 1px solid var(--mist); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; text-align: left;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--azure); }
.faq-q__icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cloud); border: 1px solid var(--mist); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; color: var(--azure); transition: transform 0.3s, background 0.2s; font-style: normal; font-weight: 400; line-height: 1; }
.faq-item.open .faq-q__icon { transform: rotate(45deg); background: rgba(0,120,212,0.1); }
.faq-a { display: none; padding: 0 0 20px; font-size: 15px; color: var(--slate); line-height: 1.75; max-width: 800px; }
.faq-item.open .faq-a { display: block; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 40%, rgba(0,78,120,0.8) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(0,120,212,0.15) 0%, transparent 70%); }
.cta-band__eyebrow { color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.cta-band__heading { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--white); letter-spacing: -0.8px; margin-bottom: 16px; }
.cta-band__sub { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonial-card { background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.testimonial-card__quote { font-size: 16px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-card__quote::before { content: '"'; color: var(--azure); font-size: 48px; line-height: 0.5; vertical-align: -20px; margin-right: 4px; font-style: normal; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--azure); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testimonial-card__name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-card__role { font-size: 13px; color: var(--slate); }

/* ================================================================
   TECH TAGS
   ================================================================ */
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag { background: rgba(0,120,212,0.08); border: 1px solid rgba(0,120,212,0.2); color: var(--azure-dark); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 4px; }
.tech-tag--dark { background: rgba(0,120,212,0.15); border-color: rgba(0,120,212,0.25); color: var(--cyan); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero { background: var(--ink); padding: 80px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(0,120,212,0.1) 0%, transparent 70%); }
.page-hero__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero__breadcrumb a:hover { color: var(--cyan); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.2); margin: 0 8px; }
.page-hero__eyebrow { color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.page-hero__heading { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.page-hero__sub { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 640px; line-height: 1.75; margin-bottom: 36px; }

/* ================================================================
   INLINE CALLOUT (service pages)
   ================================================================ */
.inline-cta { background: linear-gradient(135deg, rgba(0,120,212,0.08), rgba(80,230,255,0.05)); border: 1px solid rgba(0,120,212,0.2); border-radius: var(--radius-lg); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; gap: 32px; margin: 52px 0; }
.inline-cta__text h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.inline-cta__text p { font-size: 15px; color: var(--slate); }

/* ================================================================
   DELIVERABLES LIST
   ================================================================ */
.deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.deliverable-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--cloud); border-radius: var(--radius); border: 1px solid var(--mist); }
.deliverable-item::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: rgba(16,124,16,0.1); border: 1px solid rgba(16,124,16,0.25); color: var(--success); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.deliverable-item span { font-size: 14px; color: var(--text); font-weight: 500; line-height: 1.4; }

/* ================================================================
   FULL CASE STUDY PAGE
   ================================================================ */
.cs-full-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 48px 0; }
.cs-full-stat { background: var(--ink); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.cs-full-stat__num { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--cyan); line-height: 1; }
.cs-full-stat__label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; line-height: 1.4; }
.cs-content h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink); margin: 44px 0 16px; }
.cs-content h2:first-child { margin-top: 0; }
.cs-content p { font-size: 16px; color: var(--slate); line-height: 1.8; margin-bottom: 16px; }
.cs-content ul { margin: 0 0 20px 20px; }
.cs-content ul li { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 8px; list-style: disc; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-form { background: var(--white); border: 1px solid var(--mist); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.form-step__sub { font-size: 14px; color: var(--slate); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--mist); background: var(--white);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--azure); box-shadow: 0 0 0 3px rgba(0,120,212,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.radio-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-option input[type="radio"] { display: none; }
.radio-option label {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border: 1.5px solid var(--mist); border-radius: var(--radius-sm);
  cursor: pointer; font-size: 14px; color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.radio-option label:hover { border-color: var(--azure); background: rgba(0,120,212,0.04); }
.radio-option input[type="radio"]:checked + label { border-color: var(--azure); background: rgba(0,120,212,0.08); color: var(--azure-dark); font-weight: 600; }
.radio-option label::before { content: ''; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--mist); flex-shrink: 0; transition: border-color 0.2s, background 0.2s; }
.radio-option input[type="radio"]:checked + label::before { border-color: var(--azure); background: var(--azure); box-shadow: inset 0 0 0 3px white; }
.form-step__progress { display: flex; gap: 8px; margin-bottom: 32px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mist); transition: background 0.3s, width 0.3s; }
.step-dot.active { background: var(--azure); width: 24px; border-radius: 4px; }
.step-dot.done { background: var(--success); }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }
.btn-form-next { background: var(--azure); color: white; border: none; cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 600; padding: 12px 28px; border-radius: var(--radius-sm); transition: background 0.2s; }
.btn-form-next:hover { background: var(--azure-dark); }
.btn-form-back { background: none; border: none; cursor: pointer; color: var(--slate); font-family: var(--font-body); font-size: 14px; padding: 12px 0; }
.btn-form-back:hover { color: var(--ink); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--ink); padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer__col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer__col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: var(--cyan); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__badges { display: flex; gap: 12px; align-items: center; }
.footer__badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,120,212,0.12); border: 1px solid rgba(0,120,212,0.2); color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 4px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .grid-hero { grid-template-columns: 1fr; gap: 40px; }
  .hero__diagram { display: none; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .process-wrap { grid-template-columns: 1fr 1fr; }
  .process-wrap::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .cs-card__stats { grid-template-columns: 1fr; }
  .cs-full-stats { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; }
  .radio-options { grid-template-columns: 1fr; }
  .deliverables { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
  .hero__heading { font-size: 36px; }
}
@media (prefers-reduced-motion: reduce) { *, ::before, ::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* ================================================================
   ELEMENTOR PRO COMPATIBILITY OVERRIDES v2.0
   ================================================================ */

/* ── Elementor Canvas (no header/footer) ── */
body.elementor-template-canvas .site-header,
body.elementor-template-canvas .nav { display: none; }

/* ── Elementor Full Width ── */
body.elementor-page .site-content,
body.elementor-page .page-content { padding: 0; margin: 0; }

/* ── Remove Elementor default margins ── */
.elementor-section-wrap,
.elementor-widget-wrap { padding: 0; }

/* ── Elementor Section: Dark / Ink ── */
.elementor-section.e-section--dark,
.e-con.e-section--dark { background-color: #0A0E1A !important; }
.elementor-section.e-section--mid,
.e-con.e-section--mid  { background-color: #111827 !important; }
.elementor-section.e-section--cloud,
.e-con.e-section--cloud{ background-color: #F0F4F8 !important; }

/* ── Elementor Typography Overrides ── */
.elementor-widget-heading .elementor-heading-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.elementor-widget-text-editor { font-family: 'Inter', sans-serif; }

/* ── Elementor Button overrides ── */
.elementor-widget-button .elementor-button.e-btn--primary {
  background: #0078D4; color: #fff; border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,120,212,0.35);
  transition: background 0.2s, transform 0.15s;
}
.elementor-widget-button .elementor-button.e-btn--primary:hover {
  background: #005a9e; transform: translateY(-2px);
}
.elementor-widget-button .elementor-button.e-btn--ghost {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 6px;
}
.elementor-widget-button .elementor-button.e-btn--white {
  background: #fff; color: #0078D4; border-radius: 6px; font-weight: 700;
}
.elementor-widget-button .elementor-button.e-btn--white:hover {
  background: #F0F4F8;
}

/* ── Elementor Icon Box ── */
.elementor-icon-box-wrapper .elementor-icon { color: #0078D4; }
.elementor-icon-box-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }

/* ── Shared shortcode component grid ── */
.inclover-grid { display: grid; gap: 24px; }
.inclover-grid--2 { grid-template-columns: repeat(2, 1fr); }
.inclover-grid--3 { grid-template-columns: repeat(3, 1fr); }
.inclover-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .inclover-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .inclover-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .inclover-grid--2,
  .inclover-grid--3,
  .inclover-grid--4 { grid-template-columns: 1fr; }
  .elementor-col-50 { width: 100% !important; }
}

/* ── Elementor inner sections full-width ── */
.elementor-section.elementor-section-stretched .elementor-container {
  max-width: 100%;
}
.elementor-section .elementor-container {
  max-width: 1160px;
}

/* ── Trust bar inside Elementor ── */
.elementor-widget-html .trust-bar {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}

/* ── Elementor Tabs/Accordion styled as FAQ ── */
.elementor-accordion-item { border-bottom: 1px solid #E2E8F0; }
.elementor-accordion-item .elementor-tab-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 600; color: #0A0E1A;
  padding: 20px 0;
}
.elementor-accordion-item .elementor-tab-content {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: #64748B; line-height: 1.75;
}

/* ── Admin bar spacing ── */
.admin-bar .nav { top: 32px; }

/* ── Elementor Pro Theme Builder: hide WP nav when Elementor nav active ── */
body.elementor-template-header-footer .nav,
body.elementor-template-header-footer .site-footer { display: none; }

/* ── Elementor Loop Grid for Services/Case Studies ── */
.e-loop-item .service-card { height: 100%; }
.e-loop-item .cs-card { height: 100%; }

/* ── Override Elementor column gaps ── */
.elementor-section > .elementor-container > .elementor-row {
  column-gap: 24px;
}

/* ── Dark section text defaults ── */
.e-section--dark h1,
.e-section--dark h2,
.e-section--dark h3,
.e-section--dark .elementor-heading-title { color: #ffffff; }
.e-section--dark p,
.e-section--dark .elementor-widget-text-editor { color: rgba(255,255,255,0.65); }
.e-section--dark .section__eyebrow { color: #50E6FF; }
.e-section--dark .section__heading em { color: #50E6FF; }

/* ── Elementor Divider styled as brand line ── */
.elementor-widget-divider .elementor-divider-separator {
  border-color: rgba(0,120,212,0.3);
}

/* ── Service card hover in Elementor ── */
.elementor-widget-html .service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  transform: translateY(-3px);
  border-color: rgba(0,120,212,0.2);
}

/* ── Number counter widget ── */
.elementor-counter .elementor-counter-number-wrapper {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; color: #0078D4;
}
.elementor-counter .elementor-counter-title {
  font-family: 'Inter', sans-serif; color: #64748B;
}
