:root {
  --bg: #0a0712;
  --bg-2: #110d1d;
  --surface: rgba(20, 14, 35, 0.76);
  --surface-2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: #f7f3ea;
  --muted: #bcb1d1;
  --gold-1: #f8d891;
  --gold-2: #d8a348;
  --gold-3: #8a5b15;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(176, 97, 255, 0.18), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(255, 200, 87, 0.12), transparent 22%),
    radial-gradient(circle at 50% 88%, rgba(72, 127, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #09070f 0%, #0c0915 36%, #110d1d 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { max-width: 100%; display: block; }

.bg-grid,
.bg-noise,
.cursor-aura,
.bg-orb { position: fixed; inset: 0; pointer-events: none; }
.bg-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
  opacity: 0.55;
}
.bg-noise {
  opacity: 0.06;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 22px 22px;
}
.cursor-aura {
  width: 380px;
  height: 380px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 219, 146, 0.12), rgba(161, 103, 255, 0.08) 35%, transparent 72%);
  filter: blur(10px);
  z-index: 0;
}
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.orb-1 { inset: auto auto 65% -90px; width: 280px; height: 280px; background: rgba(182, 114, 255, 0.22); }
.orb-2 { inset: 8% -100px auto auto; width: 320px; height: 320px; background: rgba(255, 208, 127, 0.18); }
.orb-3 { inset: auto auto -120px 32%; width: 340px; height: 340px; background: rgba(77, 125, 255, 0.18); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 100;
  background: linear-gradient(90deg, #7c4dff, var(--gold-1), #fffbf0);
  box-shadow: 0 0 16px rgba(248, 216, 145, 0.55);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.section { padding: 100px 0; }
.section-shell { position: relative; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(43, 28, 77, 0.95), rgba(8, 7, 14, 0.98));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.page-loader > * { grid-column: 1; grid-row: 1; }
.loader-brand {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1.75rem;
  color: #1c1306;
  background: linear-gradient(135deg, #fff2d0, #dba54c, #f9d482);
  box-shadow: 0 18px 60px rgba(255, 200, 87, 0.28);
  transform: translateY(-52px);
}
.loader-track {
  width: 210px;
  height: 8px;
  margin-top: 110px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.loader-track span {
  display: block;
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6f42ff, var(--gold-1));
  animation: loading 1.2s ease-in-out infinite;
}
.page-loader p {
  margin-top: 168px;
  color: #d8caed;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(20px);
  background: rgba(10, 7, 18, 0.56);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #1a1207;
  font-weight: 900;
  background: linear-gradient(135deg, #fff2d3, #d7a045 55%, #af741a);
  box-shadow: 0 12px 36px rgba(215, 160, 69, 0.28);
}
.brand strong {
  display: block;
  font-size: 1rem;
}
.brand span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: #e8ddfa;
  position: relative;
  font-size: 0.96rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7c4dff, var(--gold-1));
  transition: width 0.28s ease;
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  color: #140d05;
  background: linear-gradient(135deg, #fff0c6, #ddb062 42%, #a46a14 88%);
  box-shadow: 0 16px 40px rgba(216, 163, 72, 0.26);
}
.btn-ghost {
  color: #fff4df;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}
.full { width: 100%; }
.menu-btn {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  color: #f5e9cc;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff2cf, #d49d46);
  box-shadow: 0 0 18px rgba(255, 224, 156, 0.9);
}

.hero { padding-top: 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 36px;
  align-items: center;
}
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 820px;
}
.hero h1 .gold {
  background: linear-gradient(135deg, #fff4d4, #efc06f 45%, #a96b12 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .stroke {
  font-family: 'Playfair Display', serif;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.8);
}
.hero-text,
.section-heading p,
.section-copy p,
.about-panel p,
.service-card p,
.work-copy p,
.featured-work p,
.experience-left p,
.step-card p,
.contact-text,
.footer-intro p,
.footer-card a,
.metric-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}
.metric-card {
  padding: 22px;
  border-radius: 24px;
}
.metric-card span {
  display: inline-block;
  font-size: 0.8rem;
  color: #ecdcb6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.metric-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff6df;
  font-family: 'Playfair Display', serif;
}

.hero-visual { position: relative; min-height: 680px; }
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: spin 28s linear infinite;
}
.ring-1 { width: 560px; height: 560px; right: -8px; top: 10px; }
.ring-2 { width: 380px; height: 380px; right: 82px; top: 102px; animation-direction: reverse; animation-duration: 20s; }
.showcase-panel {
  position: absolute;
  top: 44px;
  right: 0;
  width: min(100%, 520px);
  padding: 20px;
  border-radius: 34px;
  overflow: hidden;
}
.panel-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.panel-topbar > span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.panel-label {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(255,255,255,0.08);
  color: #f1e7d1;
}
.dashboard-preview {
  display: grid;
  grid-template-columns: 90px 1fr;
  min-height: 470px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}
.preview-sidebar {
  padding: 18px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.preview-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: block;
  object-fit: contain;
  padding: 8px;
  background: linear-gradient(135deg, #fff2d5, #dca64d);
  margin-bottom: 30px;
}
.preview-menu span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  margin-bottom: 16px;
}
.preview-main { padding: 26px; }
.preview-heading small {
  color: #f5ddb0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.preview-heading h2 {
  margin: 12px 0 24px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
}
.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.preview-stats div,
.preview-cards article {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.08);
}
.preview-stats div { height: 90px; }
.preview-chart {
  height: 170px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 20px 0;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
}
.preview-chart span {
  flex: 1;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, #fff4d8, #cf8d2f 80%);
  animation: bars 2.6s ease-in-out infinite;
  transform-origin: bottom center;
}
.preview-chart span:nth-child(1){ height: 32%; }
.preview-chart span:nth-child(2){ height: 58%; animation-delay: .2s; }
.preview-chart span:nth-child(3){ height: 45%; animation-delay: .4s; }
.preview-chart span:nth-child(4){ height: 82%; animation-delay: .6s; }
.preview-chart span:nth-child(5){ height: 70%; animation-delay: .8s; }
.preview-chart span:nth-child(6){ height: 92%; animation-delay: 1s; }
.preview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.preview-cards article { height: 120px; }

.floating-chip {
  position: absolute;
  padding: 18px 20px;
  border-radius: 22px;
  max-width: 240px;
  animation: floaty 7s ease-in-out infinite;
}
.floating-chip small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}
.floating-chip strong { line-height: 1.5; }
.chip-1 { left: 0; top: 110px; }
.chip-2 { left: 28px; bottom: 110px; animation-delay: .5s; }
.chip-3 { right: 20px; bottom: 24px; animation-delay: 1s; }

.marquee-strip {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 28px;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #efe5d5;
  font-weight: 700;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "✦";
  color: var(--gold-1);
}

.split-grid,
.contact-grid,
.experience-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.section-copy h2,
.section-heading h2,
.experience-left h2,
.contact-section h2,
.cta-panel h2,
.footer-intro h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.9rem);
  line-height: 1.04;
}
.section-heading.center { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-heading.center .section-tag { margin-inline: auto; }
.about-panel,
.contact-card,
.cta-panel { padding: 32px; border-radius: 30px; }
.about-badges,
.project-meta,
.contact-points,
.about-lineup,
.footer-card { display: grid; gap: 14px; }
.about-badges {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}
.about-badges span {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: #f2e4c5;
  font-weight: 600;
}
.about-lineup div {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.about-lineup strong { display: block; margin-bottom: 6px; }
.about-lineup span { color: var(--muted); }

.services-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.work-card,
.step-card,
.footer-card {
  padding: 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::before,
.work-card::before,
.step-card::before,
.footer-card::before,
.about-panel::before,
.contact-card::before,
.cta-panel::before,
.metric-card::before,
.showcase-panel::before,
.floating-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.12) 45%, transparent 68%);
  transform: translateX(-115%);
  transition: transform .9s ease;
  pointer-events: none;
}
.service-card:hover::before,
.work-card:hover::before,
.step-card:hover::before,
.footer-card:hover::before,
.about-panel:hover::before,
.contact-card:hover::before,
.cta-panel:hover::before,
.metric-card:hover::before,
.showcase-panel:hover::before,
.floating-chip:hover::before { transform: translateX(115%); }
.service-card:hover,
.work-card:hover,
.step-card:hover,
.footer-card:hover,
.about-panel:hover,
.contact-card:hover,
.cta-panel:hover,
.metric-card:hover,
.showcase-panel:hover,
.floating-chip:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 100px rgba(0,0,0,0.38);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.service-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #180f05;
  font-weight: 900;
  background: linear-gradient(135deg, #fff1cc, #daa449 58%, #aa6d17);
}
.service-pill,
.work-type,
.featured-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #f5e6bf;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
}
.service-card h3,
.work-card h3,
.step-card h3,
.footer-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}
.service-price {
  margin: 10px 0 0;
  font-weight: 700;
  color: #fff2d2;
  letter-spacing: 0.02em;
}
.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-card li {
  color: #eee3cf;
  position: relative;
  padding-left: 20px;
}
.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.65em;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #fff1cc, #dba449);
  box-shadow: 0 0 14px rgba(255, 229, 172, 0.6);
}

.work-card { min-height: 100%; }
.work-visual {
  height: 220px;
  border-radius: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.visual-1 {
  background:
    linear-gradient(135deg, rgba(15,10,30,0.18), rgba(15,10,30,0.08)),
    url("images/hospital.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.visual-3 {
  background:
    linear-gradient(135deg, rgba(15,10,30,0.18), rgba(15,10,30,0.08)),
    url("images/software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.featured-work {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 214, 130, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}
.featured-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.featured-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.featured-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.featured-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: #fff0c8;
}
.featured-metrics span { color: var(--muted); }

.step-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.step-card > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-weight: 900;
  color: #1a1207;
  background: linear-gradient(135deg, #fff1cc, #daa54d);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 215, 135, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
}

.contact-points a,
.contact-points span,
.footer-card a { color: #e6d7f3; }
.contact-card {
  display: grid;
  gap: 18px;
}
.contact-card label { display: grid; gap: 10px; }
.contact-card span { color: #f0e0bb; font-weight: 600; }
.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 16px 18px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder { color: #ad9bc6; }
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(255, 221, 165, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 221, 165, 0.08);
  transform: translateY(-1px);
}

.footer { padding: 16px 0 38px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.footer-card a { transition: transform .25s ease, color .25s ease; }
.footer-card a:hover { transform: translateX(4px); color: #fff4d9; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 95;
  background: linear-gradient(135deg, #2add74, #108a48);
  box-shadow: 0 18px 46px rgba(17, 122, 63, 0.44);
  animation: pulse 2.2s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.magnetic { will-change: transform; }

@keyframes loading {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes bars {
  0%,100% { transform: scaleY(.92); opacity: .84; }
  50% { transform: scaleY(1.08); opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .experience-grid,
  .services-grid,
  .work-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-visual { min-height: 620px; }
  .showcase-panel { position: relative; top: 0; width: 100%; }
  .chip-1 { left: 0; }
  .chip-2 { left: 20px; bottom: 24px; }
  .chip-3 { right: 0; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(12, 8, 20, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-btn { display: block; }
  .hide-mobile { display: none; }
  .hero { padding-top: 42px; }
  .metrics-grid,
  .about-badges,
  .featured-metrics,
  .preview-stats,
  .preview-cards { grid-template-columns: 1fr; }
  .dashboard-preview { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .hero-visual { min-height: 560px; }
  .floating-chip,
  .hero-ring { display: none; }
  .cta-panel { flex-direction: column; align-items: start; }
}

@media (max-width: 560px) {
  .section { padding: 78px 0; }
  .container { width: min(var(--container), calc(100% - 20px)); }
  .brand strong { font-size: .92rem; }
  .brand span { font-size: .74rem; }
  .hero h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .about-panel,
  .contact-card,
  .service-card,
  .work-card,
  .step-card,
  .footer-card,
  .metric-card,
  .cta-panel,
  .showcase-panel { padding: 22px; border-radius: 24px; }
  .btn { width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 1fr; }
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: 14px;
  }
}
