/* ===========================
   ELEVO — Global Stylesheet
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #0F172A; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- CSS Variables --- */
:root {
  --azure:        #0078D4;
  --electric:     #00A8FF;
  --green-dark:   #16A34A;
  --green-bright: #84CC16;
  --deep-bg:      #030D1A;
  --navy:         #031B3D;
  --bg-light:     #F8FAFC;
  --slate-text:   #64748B;
  --border:       #E2E8F0;
  --white:        #FFFFFF;
  --container:    1200px;
  --radius-lg:    1rem;
  --radius-xl:    1.5rem;
}

/* --- Typography --- */
.font-sora { font-family: 'Sora', sans-serif; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(3, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  height: 64px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 36px;
  width: auto;
}
.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link svg { opacity: 0.5; flex-shrink: 0; }
.btn-cta-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-cta-header:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.mobile-menu-btn { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 0.25rem; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 8px;
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--azure);
  color: #fff;
}
.btn-primary:hover { background: #0085ef; box-shadow: 0 4px 20px rgba(0,168,255,0.4); }
.btn-primary-green {
  background: var(--green-dark);
  color: #fff;
}
.btn-primary-green:hover { background: #12913e; box-shadow: 0 4px 20px rgba(132,204,22,0.4); }
.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.05); }
.btn-outline-dark {
  background: transparent;
  color: #0F172A;
  border: 1.5px solid var(--border);
}
.btn-outline-dark:hover { border-color: #94A3B8; background: #f1f5f9; }

/* ===========================
   PILL / LABEL BADGES
   =========================== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  border: 1px solid;
}
.pill-white { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.pill-blue  { background: rgba(0,120,212,0.08);  border-color: rgba(0,120,212,0.2);  color: var(--azure); }
.pill-green { background: rgba(22,163,74,0.08);  border-color: rgba(22,163,74,0.2);  color: var(--green-dark); }
.pill-lime  { background: rgba(124,252,0,0.1);   border-color: rgba(124,252,0,0.2);  color: #7CFC00; }

/* ===========================
   GRADIENT TEXT
   =========================== */
.text-azure {
  background: linear-gradient(90deg, #38BDF8, #0078D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green {
  background: linear-gradient(90deg, #84CC16, #22C55E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  padding: 1rem 0 0;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.65); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* ===========================
   HERO — HOMEPAGE
   =========================== */
.hero-home {
  background: var(--deep-bg);
  min-height: 100vh;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-home::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,168,255,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-home::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 35%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(132,204,22,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-30px); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-home .container {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-home-layout {
  display: grid;
  grid-template-columns: 1fr auto 220px;
  gap: 2rem;
  align-items: center;
}
.hero-text .pill { margin-bottom: 1.5rem; }
.hero-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 2.25rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-image-wrap { display: flex; justify-content: center; }
.hero-image-wrap img { width: 100%; max-width: 520px; }
.hero-service-cards {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hero-service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: background .2s;
}
.hero-service-card:hover { background: rgba(255,255,255,0.07); }
.hero-scard-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  margin-top: 1px;
}
.hero-scard-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.2rem;
}
.hero-scard-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ===========================
   HERO — INNER PAGES
   =========================== */
.hero-inner {
  background: var(--deep-bg);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
}
.hero-inner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,168,255,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner .hero-grid { opacity: 0.5; }
.hero-inner .container { position: relative; z-index: 2; padding-top: 2rem; padding-bottom: 4rem; }
.hero-inner-layout {
  display: grid;
  grid-template-columns: 1fr auto 220px;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* NR1 hero — green accent */
.hero-nr1 { background: linear-gradient(135deg, #030D1A 0%, #041f10 60%, #062912 100%); }
.hero-nr1::before { background: radial-gradient(circle, rgba(22,163,74,0.2) 0%, transparent 70%); }
.hero-nr1 .hero-scard-icon { color: var(--green-bright); }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-text);
  white-space: nowrap;
  padding-right: 1.5rem;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.trust-items { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 1.25rem;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 28px;
  background: var(--border);
}
.trust-item-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  line-height: 1.3;
}
.trust-item-desc {
  font-size: 0.6875rem;
  color: var(--slate-text);
  white-space: nowrap;
}

/* trust bar dark variant (for NR1) */
.trust-bar-dark {
  background: #0a1a2e;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-bar-dark .trust-label { color: rgba(255,255,255,0.4); border-right-color: rgba(255,255,255,0.1); }
.trust-bar-dark .trust-item::after { background: rgba(255,255,255,0.1); }
.trust-bar-dark .trust-item-icon { color: var(--green-dark); }
.trust-bar-dark .trust-item-name { color: rgba(255,255,255,0.85); }
.trust-bar-dark .trust-item-desc { color: rgba(255,255,255,0.4); }

/* ===========================
   SECTION HELPERS
   =========================== */
.section { padding: 5rem 0; }
.section-lg { padding: 6.5rem 0; }
.section-dark { background: var(--deep-bg); }
.section-navy { background: var(--navy); }
.section-light { background: var(--bg-light); }
.section-white { background: #fff; }

.section-eyebrow { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.eyebrow-blue { color: var(--azure); }
.eyebrow-green { color: var(--green-dark); }
.eyebrow-white { color: rgba(255,255,255,0.5); }

.section-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0F172A;
  margin-bottom: 1rem;
}
.section-heading-white { color: #fff; }
.section-subheading {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-text);
  max-width: 480px;
}
.section-subheading-white { color: rgba(255,255,255,0.55); }

/* ===========================
   SERVICE CARDS (homepage)
   =========================== */
.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.services-left .pill { margin-bottom: 1rem; }
.services-left .section-heading { margin-top: 0.75rem; }
.services-left .link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--azure);
  margin-top: 1.5rem;
  transition: gap .2s;
}
.services-left .link-more:hover { gap: 0.6rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.625rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--electric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.green-accent::before { background: linear-gradient(90deg, var(--green-dark), var(--green-bright)); }
.svc-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid;
}
.svc-card-icon.blue { background: rgba(0,120,212,0.07); border-color: rgba(0,120,212,0.15); color: var(--azure); }
.svc-card-icon.green { background: rgba(22,163,74,0.07); border-color: rgba(22,163,74,0.15); color: var(--green-dark); }
.svc-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.svc-card-desc { font-size: 0.8125rem; color: var(--slate-text); line-height: 1.6; margin-bottom: 1rem; }
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--azure);
  transition: gap .2s;
}
.svc-card-link:hover { gap: 0.6rem; }
.svc-card-link.green { color: var(--green-dark); }

/* ===========================
   5-COLUMN SERVICE CARDS (inner pages)
   =========================== */
.services-5-grid { grid-template-columns: repeat(5, 1fr); }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--azure); flex-shrink: 0; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.stat-number.blue { background: linear-gradient(135deg, #38BDF8, #0078D4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-number.green { background: linear-gradient(135deg, #84CC16, #22C55E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.875rem; color: var(--slate-text); }

/* ===========================
   WHY ELEVO (homepage dark section)
   =========================== */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-left .pill { margin-bottom: 1.25rem; }
.why-features { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2.5rem; }
.why-feature { display: flex; gap: 1.25rem; }
.why-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--electric);
  letter-spacing: 0.05em;
  padding-top: 2px;
  width: 28px;
  flex-shrink: 0;
}
.why-feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.375rem;
}
.why-feature-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.why-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.why-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0,168,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.why-panel-items { display: flex; flex-direction: column; gap: 0.75rem; position: relative; }
.why-panel-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  transition: background .2s;
}
.why-panel-item:hover { background: rgba(255,255,255,0.07); }
.why-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.why-dot.blue { background: var(--electric); box-shadow: 0 0 8px rgba(0,168,255,0.7); }
.why-dot.green { background: var(--green-bright); box-shadow: 0 0 8px rgba(124,252,0,0.7); }
.why-item-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); flex: 1; }
.why-item-value { font-family: 'Sora', sans-serif; font-size: 0.875rem; font-weight: 600; color: #fff; }
.why-risk-footer {
  margin-top: 0.75rem;
  padding: 1rem;
  background: rgba(0,120,212,0.1);
  border: 1px solid rgba(0,120,212,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.why-risk-label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }
.why-risk-value { font-family: 'Sora', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--green-bright); }

/* ===========================
   NR1 SPLIT (homepage)
   =========================== */
.nr1-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.nr1-left {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5rem 4rem;
  background: linear-gradient(135deg, #031B3D 0%, #0d3a1a 50%, #16A34A 100%);
}
.nr1-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(124,252,0,0.08), transparent 70%);
}
.nr1-left-content { position: relative; z-index: 1; max-width: 400px; }
.nr1-left .pill { margin-bottom: 1.25rem; }
.nr1-left .section-heading { margin-bottom: 1rem; }
.nr1-left .section-subheading { margin-bottom: 2.25rem; }
.nr1-right {
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}
.nr1-right .pill { margin-bottom: 1.5rem; }
.nr1-solutions { display: flex; flex-direction: column; gap: 1rem; }
.nr1-sol-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow .2s, transform .2s;
}
.nr1-sol-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); transform: translateX(3px); }
.nr1-sol-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-dark);
}
.nr1-sol-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.25rem;
}
.nr1-sol-desc { font-size: 0.8125rem; color: var(--slate-text); line-height: 1.55; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7rem 0;
  background: linear-gradient(135deg, #031B3D 0%, #041f4a 50%, #031B3D 100%);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,168,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner .pill { margin-bottom: 1.5rem; }
.cta-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.cta-subtext { font-size: 1.0625rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }

/* CTA with cards variant */
.cta-split {
  background: var(--navy);
  padding: 5rem 0;
}
.cta-split .container { position: relative; z-index: 1; }
.cta-split-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.cta-split-left .section-heading { margin-bottom: 1rem; }
.cta-split-left .section-subheading { margin-bottom: 2rem; }
.cta-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.cta-card-icon { color: var(--azure); margin-bottom: 1rem; }
.cta-card-icon.green { color: var(--green-dark); }
.cta-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-card-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.45); line-height: 1.55; margin-bottom: 1rem; }
.cta-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--azure);
  transition: gap .2s;
}
.cta-card-link:hover { gap: 0.6rem; }
.cta-card-link.green { color: var(--green-dark); }

/* ===========================
   METHODOLOGY STEPS
   =========================== */
.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.method-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.method-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--azure);
  letter-spacing: 0.05em;
}
.method-step:nth-child(1) .method-step-num,
.method-step:nth-child(2) .method-step-num { border-color: var(--azure); }
.method-step-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 0.5rem;
}
.method-step-desc { font-size: 0.8125rem; color: var(--slate-text); line-height: 1.55; }

/* Green method variant */
.method-steps.green .method-step-num { color: var(--green-dark); }
.method-steps.green .method-step:nth-child(1) .method-step-num,
.method-steps.green .method-step:nth-child(2) .method-step-num { border-color: var(--green-dark); }
.method-steps.green .method-step-title { color: var(--green-dark); }

/* ===========================
   TECH LOGOS
   =========================== */
.tech-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}
.tech-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tech-logo-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.tech-logo-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.tech-logo-name { font-size: 0.75rem; font-weight: 600; color: #334155; line-height: 1.3; }
.tech-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tech-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--slate-text);
  line-height: 1.45;
}
.tech-benefit svg { color: var(--azure); flex-shrink: 0; margin-top: 1px; }

/* ===========================
   NR1 PRACTICE SECTION
   =========================== */
.practice-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.practice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.practice-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.practice-card-icon { color: var(--green-dark); margin-bottom: 0.75rem; }
.practice-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.375rem;
}
.practice-card-desc { font-size: 0.8125rem; color: var(--slate-text); line-height: 1.55; }

/* ===========================
   NR1 SERVICES (6-column)
   =========================== */
.nr1-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.nr1-svc-card {
  text-align: center;
  padding: 1.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: box-shadow .2s;
}
.nr1-svc-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.nr1-svc-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
}
.nr1-svc-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.5rem;
}
.nr1-svc-desc { font-size: 0.75rem; color: var(--slate-text); line-height: 1.55; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #020e20;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { font-size: 1.375rem; }
.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-top: 0.875rem;
  max-width: 200px;
}
.footer-col h5 {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.84375rem; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78125rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78125rem; color: rgba(255,255,255,0.25); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-home-layout, .hero-inner-layout { grid-template-columns: 1fr auto; }
  .hero-service-cards { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-5-grid { grid-template-columns: repeat(2, 1fr); }
  .nr1-services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tech-layout { grid-template-columns: 1fr; gap: 2rem; }
  .tech-logos { grid-template-columns: repeat(3, 1fr); }
  .practice-layout { grid-template-columns: 1fr; }
  .cta-split-layout { grid-template-columns: 1fr; }
  .cta-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .nr1-split { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .method-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .method-steps::before { display: none; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-cta-header { display: none; }
  .mobile-menu-btn { display: block; }

  /* Mobile nav open state */
  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(3, 13, 26, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.25rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 0.25rem;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .main-nav.mobile-open .nav-link {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
  }
  .main-nav.mobile-open .nav-link:last-child { border-bottom: none; }

  .hero-home-layout { grid-template-columns: 1fr; }
  .hero-inner-layout { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .services-grid, .services-5-grid, .nr1-services-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-label { border-right: none; padding-right: 0; }
  .trust-items { flex-wrap: wrap; }
  .trust-item::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-cards-grid { grid-template-columns: 1fr; }
  .practice-cards { grid-template-columns: 1fr; }
  .tech-benefits { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .nr1-split { grid-template-columns: 1fr; }
  .nr1-left, .nr1-right { padding: 3rem 1.5rem; }
  .why-layout { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .trust-bar-grid .trust-label { display: none; }
  .cta-split-layout { grid-template-columns: 1fr; }
  .tech-layout { grid-template-columns: 1fr; }
  .tech-logos { grid-template-columns: repeat(2, 1fr); }
  /* Hero headings readable on mobile */
  .hero-heading { font-size: clamp(1.75rem, 7vw, 2.5rem) !important; }
  .hero-body { font-size: 0.9375rem; }
}
@media (max-width: 480px) {
  .services-grid, .services-5-grid, .nr1-services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .trust-bar-grid { grid-template-columns: 1fr !important; }
  .tech-logos { grid-template-columns: 1fr 1fr; }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
