/* ============================================================
   JC Consulting — Main Stylesheet
   Brand colors extracted from logo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;900&family=Source+Sans+3:wght@300;400;600&family=Source+Code+Pro:wght@300;400&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --black:     #070808;
  --dark:      #0d1214;
  --charcoal:  #141c1f;
  --panel:     #192228;
  --rim:       #1e2d33;
  --teal:      #7eb8c4;
  --teal-mid:  #5ea3b3;
  --teal-dim:  #3d7a8a;
  --teal-deep: #1e4d58;
  --teal-glow: rgba(126,184,196,0.15);
  --white:     #e8f0f2;
  --mist:      #8fb3bc;
  --ghost:     #4a6d75;

  --font-head: 'Raleway', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'Source Code Pro', monospace;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--mist);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(126,184,196,0.06) 0%, transparent 60%);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(7,8,8,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(126,184,196,0.1);
  animation: slideDown 0.7s ease both;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(126,184,196,0.3));
}
.nav-logo-fallback {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: -0.05em;
}
.brand-text { line-height: 1.2; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--ghost);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}
.nav-links a {
  color: var(--mist);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ─── BUTTONS ─── */
.btn-ghost {
  border: 1px solid rgba(126,184,196,0.3);
  color: var(--teal);
  padding: 0.42rem 1.1rem;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(126,184,196,0.08); border-color: var(--teal); }

.btn-solid {
  background: var(--teal);
  color: var(--black);
  padding: 0.42rem 1.3rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-solid:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(126,184,196,0.25); }

.btn-hero-primary {
  background: var(--teal);
  color: var(--black);
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-hero-primary:hover::before { transform: translateX(100%); }
.btn-hero-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(126,184,196,0.3); }

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(232,240,242,0.2);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.btn-cta-full {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--teal);
  color: var(--black);
  padding: 0.9rem 1.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  margin-bottom: 0.7rem;
}
.btn-cta-full:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(126,184,196,0.2); }

.btn-emg-full {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--teal);
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(126,184,196,0.3);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-emg-full:hover { background: rgba(126,184,196,0.08); border-color: var(--teal); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 3.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(126,184,196,0.07);
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  animation: ringPulse 6s ease-in-out infinite;
  transition: transform 0.8s ease;
}
.ring:nth-child(1) { width: 300px; height: 300px; animation-delay: 0s; }
.ring:nth-child(2) { width: 500px; height: 500px; animation-delay: 0.8s; border-color: rgba(126,184,196,0.05); }
.ring:nth-child(3) { width: 720px; height: 720px; animation-delay: 1.6s; border-color: rgba(126,184,196,0.035); }
.ring:nth-child(4) { width: 960px; height: 960px; animation-delay: 2.4s; border-color: rgba(126,184,196,0.02); }
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.04); opacity: 0.6; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126,184,196,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,184,196,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,184,196,0.08) 0%, transparent 70%);
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--teal-mid); }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.6s ease both;
}
.hero h1 .teal { color: var(--teal); text-shadow: 0 0 30px rgba(126,184,196,0.3); }

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--mist);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.7s 0.8s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 1s ease both;
}

.trust-bar {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(126,184,196,0.1);
  animation: fadeUp 0.7s 1.2s ease both;
}
.trust-item {
  padding-right: 2.5rem;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(126,184,196,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.trust-val span { color: var(--teal); }
.trust-key {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-top: 0.25rem;
}

/* ─── HERO LOGO WIDGET ─── */
.hero-logo-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: fadeUp 0.7s 0.7s ease both;
}
.logo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(126,184,196,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.logo-circle-inner {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(126,184,196,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinSlow 20s linear infinite reverse;
}
.hero-logo-img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(126,184,196,0.4));
}
.hero-status {
  background: rgba(25,34,40,0.8);
  border: 1px solid rgba(126,184,196,0.15);
  padding: 1.2rem 1.5rem;
  width: 100%;
}
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.status-row:last-child { margin-bottom: 0; }
.status-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ghost);
}
.status-val {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--teal);
}
.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ─── SHARED SECTION STYLES ─── */
section { padding: 6rem 3.5rem; position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; }

.s-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.s-eyebrow::before { content: attr(data-n); color: var(--ghost); }
.s-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.s-sub { font-size: 1rem; line-height: 1.8; max-width: 520px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,184,196,0.15) 30%, rgba(126,184,196,0.15) 70%, transparent);
}

/* ─── SERVICES SECTION ─── */
.services-section { background: var(--dark); }
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(126,184,196,0.06);
}

.svc-card {
  background: var(--dark);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-dim), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.svc-card:hover { background: var(--charcoal); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-n {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--ghost);
  margin-bottom: 1.4rem;
}
.svc-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(126,184,196,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.svc-card:hover .svc-icon { border-color: rgba(126,184,196,0.5); }
.svc-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.svc-card p { font-size: 0.88rem; line-height: 1.72; }
.svc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 1.2rem; }
.svc-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--teal-mid);
  background: rgba(126,184,196,0.06);
  border: 1px solid rgba(126,184,196,0.15);
  padding: 0.18rem 0.55rem;
}

/* ─── PLATFORMS SECTION ─── */
.platforms-section { background: var(--black); }
.platforms-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.plat-card {
  background: var(--panel);
  border: 1px solid rgba(126,184,196,0.08);
  padding: 1.8rem;
  transition: all 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.plat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.4s ease;
}
.plat-card:hover { border-color: rgba(126,184,196,0.25); background: var(--charcoal); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.plat-card:hover::after { width: 100%; }

.plat-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 0.5rem;
}
.plat-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.plat-desc { font-size: 0.84rem; line-height: 1.68; margin-bottom: 1rem; }
.plat-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.plat-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  color: var(--ghost);
  background: rgba(126,184,196,0.04);
  border: 1px solid rgba(126,184,196,0.08);
  padding: 0.14rem 0.48rem;
}

/* ─── ENGAGE SECTION ─── */
.engage-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.engage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,184,196,0.25) 40%, rgba(126,184,196,0.25) 60%, transparent);
}
.engage-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.engage-steps { margin-top: 3rem; display: flex; flex-direction: column; }

.eng-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(126,184,196,0.07);
  transition: all 0.3s;
  cursor: default;
}
.eng-step:last-child { border-bottom: none; }
.eng-step:hover .eng-title { color: var(--teal); }

.eng-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--teal-dim);
  width: 28px;
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.eng-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
  transition: color 0.3s;
}
.eng-text { font-size: 0.87rem; line-height: 1.7; }

/* CTA PANEL */
.cta-panel {
  background: var(--panel);
  border: 1px solid rgba(126,184,196,0.12);
  padding: 2.5rem;
  position: sticky;
  top: 110px;
}
.cta-panel-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(126,184,196,0.08);
}
.cta-logo { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 8px rgba(126,184,196,0.3)); }
.cta-logo-fallback {
  width: 48px; height: 48px; border: 1.5px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 900; color: var(--teal);
}
.cta-brand { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); }
.cta-brand small { display: block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.15em; color: var(--ghost); font-weight: 300; margin-top: 0.1rem; }
.cta-panel h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); line-height: 1.25; margin-bottom: 0.9rem; }
.cta-panel p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.8rem; }
.cta-note { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.08em; color: var(--ghost); margin-top: 1.2rem; text-align: center; }

/* ─── FOOTER ─── */
footer {
  background: #040608;
  padding: 4rem 3.5rem 2rem;
  border-top: 1px solid rgba(126,184,196,0.08);
  position: relative;
  z-index: 1;
}
.footer-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(126,184,196,0.06);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; margin-top: 1rem; }
.foot-col h4 { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col a { color: var(--ghost); font-size: 0.85rem; text-decoration: none; transition: color 0.25s; }
.foot-col a:hover { color: var(--teal); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.foot-copy { font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.08em; color: var(--ghost); }
.foot-loc { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.12em; color: var(--ghost); }
.loc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 6px var(--teal); animation: blink 2s infinite ease-in-out; }

/* ─── SCROLL REVEAL ─── */
.reveal  { opacity: 0; transform: translateY(36px);  transition: opacity 0.85s ease, transform 0.85s ease; }
.rev-l   { opacity: 0; transform: translateX(-36px); transition: opacity 0.85s ease, transform 0.85s ease; }
.rev-r   { opacity: 0; transform: translateX(36px);  transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.in, .rev-l.in, .rev-r.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  nav { padding: 1rem 1.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-display { display: none; }
  .services-top { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .platforms-intro { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .engage-inner { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr 1fr; }
  section { padding: 4.5rem 2rem; }
}
@media (max-width: 640px) {
  .services-grid, .platforms-grid { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr; }
  .trust-bar { flex-wrap: wrap; gap: 1.5rem; }
  .trust-item { border-right: none; padding-right: 0; margin-right: 0; }
  nav { padding: 1rem; }
  .nav-right .btn-ghost { display: none; }
}
