/* ============================
   FAMOSITY — Light Theme CSS
   Plus Jakarta Sans + Lora
   Purple × Magenta × Blue gradient system
   ============================ */

:root {
  /* Core palette */
  --white:      #ffffff;
  --off-white:  #f8f7ff;
  --light:      #f0eefa;
  --light2:     #e8e4f7;

  --navy:       #12123a;
  --navy2:      #1a1a5c;
  --ink:        #1e1e4a;
  --ink2:       #2d2d6b;
  --body-text:  #38386a;
  --muted:      #6b6b9a;
  --border:     #ddd8f5;
  --border2:    #c8c0ee;

  /* Brand gradient */
  --grad:       linear-gradient(135deg, #7c3aed 0%, #b026d0 40%, #e91e8c 70%, #3b82f6 100%);
  --grad-soft:  linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(176,38,208,0.06) 50%, rgba(233,30,140,0.08) 100%);
  --grad-hero:  linear-gradient(160deg, #f8f7ff 0%, #ede9fe 40%, #fce7f3 70%, #eff6ff 100%);

  /* Accent colours */
  --purple:     #7c3aed;
  --purple-lt:  #ede9fe;
  --blue:       #3b82f6;
  --blue-lt:    #eff6ff;
  --magenta:    #b026d0;
  --magenta-lt: #fae8ff;
  --pink:       #e91e8c;

  --font-head:  'Plus Jakarta Sans', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Lora', serif;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(100, 60, 200, 0.08);
  --shadow:     0 8px 32px rgba(100, 60, 200, 0.12);
  --shadow-lg:  0 20px 60px rgba(100, 60, 200, 0.16);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--off-white); }
.bg-gradient-subtle { background: var(--grad-soft); }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TYPOGRAPHY ── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 4px 18px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border2);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-lt);
}
.btn-full { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.nav-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo .logo-svg-wrap {
  width: 160px;
  height: auto;
  display: block;
}
.nav-logo .logo-svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body-text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--grad) !important;
  color: white !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 0.88rem !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(124,58,237,0.35); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 28px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.b1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 60%); top: -120px; right: -80px; animation: blobFloat 7s ease-in-out infinite; }
.b2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(233,30,140,0.14) 0%, transparent 60%); bottom: -80px; left: 10%; animation: blobFloat 9s ease-in-out infinite reverse; }
.b3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 60%); top: 40%; left: 40%; animation: blobFloat 11s ease-in-out infinite; }
@keyframes blobFloat {
  0%,100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.08) translate(15px,-15px); }
}

.hero-layout {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-krenx-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.krenx-link { color: var(--purple); font-weight: 700; }
.krenx-link:hover { text-decoration: underline; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--purple-lt);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
  width: fit-content;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-cards-stack {
  position: relative;
  width: 380px; height: 380px;
}
.hc {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px; height: 110px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  gap: 6px;
  transition: var(--transition);
  animation: cardFloat 4s ease-in-out infinite;
}
.hc:hover { box-shadow: var(--shadow-lg); transform: scale(1.06); }
.hc-icon { font-size: 1.7rem; }
.hc1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hc2 { top: 80px; right: 10px; animation-delay: 0.4s; }
.hc3 { top: 200px; right: 0; animation-delay: 0.8s; }
.hc4 { bottom: 50px; right: 40px; animation-delay: 1.2s; }
.hc5 { bottom: 30px; left: 50px; animation-delay: 1.6s; }
.hc6 { top: 200px; left: 0; animation-delay: 2s; }
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hc1 { animation: cardFloat1 4s ease-in-out infinite; }
@keyframes cardFloat1 {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.hero-center-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(124,58,237,0.4);
  z-index: 2;
}
.hcb-inner { text-align: center; }
.hcb-inner strong { display: block; color: white; font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; }
.hcb-inner span { display: block; color: rgba(255,255,255,0.8); font-size: 0.65rem; font-weight: 600; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--grad);
  padding: 13px 0;
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: tickerAnim 35s linear infinite;
  align-items: center;
}
.ticker-inner span {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sep { opacity: 0.5; }
@keyframes tickerAnim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(296px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::after { opacity: 1; }
.sc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.sc-icon-wrap.purple { background: var(--purple-lt); }
.sc-icon-wrap.blue { background: var(--blue-lt); }
.sc-icon-wrap.magenta { background: var(--magenta-lt); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  position: relative; z-index: 1;
}
.sc-tags span {
  padding: 3px 10px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.04em;
}

/* ── INDUSTRIES ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.ind-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: var(--transition);
}
.ind-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.ind-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.ind-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.ind-card p { font-size: 0.875rem; color: var(--body-text); line-height: 1.6; }

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title,
.about-text .section-label { text-align: left; }
.about-desc {
  font-size: 1rem;
  color: var(--body-text);
  line-height: 1.78;
  margin-bottom: 16px;
}
.inline-link { color: var(--purple); font-weight: 600; }
.inline-link:hover { text-decoration: underline; }
.about-pillars { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 3px; font-size: 0.95rem; }
.pillar p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.krenx-mention {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 10px 18px;
  background: var(--light);
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}
.krenx-mention a { color: var(--purple); font-weight: 700; }
.krenx-mention a:hover { text-decoration: underline; }

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.av-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed;
}
.av-ring1 { width: 280px; height: 280px; border-color: rgba(124,58,237,0.2); animation: spin 20s linear infinite; }
.av-ring2 { width: 360px; height: 360px; border-color: rgba(233,30,140,0.15); animation: spin 30s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.av-center-logo {
  width: 180px;
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.av-center-logo svg { width: 100%; height: auto; display: block; }
.av-orbit-item {
  position: absolute;
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--border2);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 0.77rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  animation: floatItem 4s ease-in-out infinite;
  z-index: 3;
}
.oi1 { top: 10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.oi2 { top: 60px; right: 0; animation-delay: 0.5s; }
.oi3 { bottom: 60px; right: 10px; animation-delay: 1s; }
.oi4 { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.oi5 { top: 60px; left: 0; animation-delay: 2s; }
@keyframes floatItem {
  0%,100% { transform: translateY(0) translateX(var(--tx,0)); }
  50% { transform: translateY(-6px) translateX(var(--tx,0)); }
}
.oi1, .oi4 { --tx: -50%; }

/* ── HOW IT WORKS ── */
.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  max-width: 240px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--purple); }
.step-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
}
.step-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 1.4rem; color: var(--purple); padding: 0 10px; opacity: 0.4; }

/* ── WHY FAMOSITY ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.why-icon.purple { background: var(--purple-lt); }
.why-icon.blue { background: var(--blue-lt); }
.why-icon.magenta { background: var(--magenta-lt); }
.why-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: var(--body-text); line-height: 1.65; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-text .section-title,
.contact-text .section-label { text-align: left; }
.contact-desc { color: var(--body-text); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.cd-item { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { font-size: 1.3rem; flex-shrink: 0; }
.cd-item strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 2px; }
.cd-item p { font-size: 0.92rem; color: var(--body-text); }
.global-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: var(--purple-lt);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--ink);
}
.global-badge span { font-size: 1.2rem; flex-shrink: 0; }
.global-badge strong { color: var(--purple); }

.contact-form {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--purple); background: white; }
.fg select option { background: white; color: var(--navy); }
.fg textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: -6px; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: var(--off-white); }
.footer-top {
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 80px;
}
.footer-logo-svg { width: 180px; margin-bottom: 16px; }
.footer-logo-svg svg { width: 100%; height: auto; display: block; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; max-width: 280px; }
.footer-krenx { font-size: 0.82rem !important; }
.footer-krenx a { color: #a78bfa; font-weight: 600; }
.footer-krenx a:hover { text-decoration: underline; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-btn:hover { border-color: #a78bfa; color: #a78bfa; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.fl-col h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a78bfa;
  margin-bottom: 18px;
}
.fl-col ul { display: flex; flex-direction: column; gap: 9px; }
.fl-col a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.fl-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: #a78bfa; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 2px;
    z-index: 999;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { width: 100%; justify-content: space-around; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-row { flex-direction: column; align-items: stretch; }
  .step-card { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
}
@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-div { width: 80%; height: 1px; }
}
