  :root {
      --bg: #050816;
      --bg-alt: #060b1b;
      --bg-soft: rgba(255,255,255,0.03);
      --primary: #4f46e5;
      --primary-soft: rgba(79,70,229,0.15);
      --accent: #f97316;
      --text: #e5e7eb;
      --muted: #9ca3af;
      --border-subtle: rgba(255,255,255,0.06);
      --radius-lg: 20px;
      --radius-xl: 32px;
      --blur-card: 18px;
      --shadow-soft: 0 24px 60px rgba(0,0,0,0.45);
      --nav-height: 70px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      scroll-behavior: smooth;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      position: relative;
      isolation: isolate;
    }

    /* ===== NAVBAR ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(22px);
      background: linear-gradient(to bottom, rgba(2,6,23,0.92), rgba(2,6,23,0.65), transparent);
      border-bottom: 1px solid rgba(148,163,184,0.15);
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      height: var(--nav-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1.25rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 14px;
      background: conic-gradient(from 230deg, #4f46e5, #22c55e, #06b6d4, #f97316, #4f46e5);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 30px rgba(15,23,42,0.9);
    }
/* When using an image inside the logo mark */
.logo-mark-img {
  width: 42px;          /* slightly larger for real logo */
  height: 42px;
  border-radius: 14px;
  padding: 4px;         /* inner padding so logo doesn’t touch edges */
  background: rgba(15,23,42, 0.98); /* dark pill behind logo */
  box-shadow: 0 10px 30px rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.5);
}

/* The logo image itself */
.logo-mark-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;   /* keeps aspect ratio, no stretching */
}

    .logo-mark span {
      font-size: 0.9rem;
      font-weight: 700;
      color: white;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-text-main {
      font-weight: 700;
      letter-spacing: 0.04em;
      font-size: 1.1rem;
    }

    .logo-text-sub {
      font-size: 0.7rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.92rem;
    }

    .nav-links a {
      color: var(--muted);
      position: relative;
      padding: 0.15rem 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 999px;
      transition: width 0.2s ease;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.88rem;
      padding: 0.5rem 0.95rem;
      border-radius: 999px;
      background: radial-gradient(circle at top left, rgba(248,250,252,0.06), transparent 60%);
      border: 1px solid rgba(148,163,184,0.45);
      color: #e5e7eb;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    }

    .nav-cta span.icon {
      font-size: 1.1rem;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 45px rgba(15,23,42,0.65);
      border-color: rgba(248,250,252,0.8);
      background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(15,118,110,0.15));
    }

    .burger {
      display: none;
      width: 26px;
      height: 22px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .burger span {
      display: block;
      height: 2px;
      background: #e5e7eb;
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .burger.open span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
      opacity: 0;
    }

    .burger.open span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }

    .nav-mobile {
      display: none;
      flex-direction: column;
      gap: 0.75rem;
      padding: 0 1.25rem 1rem;
      border-bottom: 1px solid rgba(148,163,184,0.25);
      background: rgba(2,6,23,0.96);
    }

    .nav-mobile a {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .nav-mobile a:hover {
      color: var(--text);
    }

    /* ===== LAYOUT ===== */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.25rem 4rem;
    }

    section {
      padding: 3.5rem 0;
      position: relative;
    }

    .section-label {
      font-size: 0.76rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .section-subtitle {
      color: var(--muted);
      max-width: 560px;
      font-size: 0.96rem;
    }

    /* Section wrapper blocks for variation */
    .section-block {
      border-radius: 26px;
      padding: 1.7rem 1.7rem 2.1rem;
      border: 1px solid rgba(148,163,184,0.3);
      box-shadow: 0 20px 55px rgba(15,23,42,0.85);
      background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(15,23,42,0.98));
      position: relative;
      overflow: hidden;
    }

    .section-block::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top left, rgba(79,70,229,0.16), transparent 60%);
      opacity: 0.5;
      pointer-events: none;
    }

    .section-block-inner {
      position: relative;
      z-index: 1;
    }

    .block-light {
      background: radial-gradient(circle at top left, rgba(148,163,184,0.18), rgba(15,23,42,0.98));
      border-color: rgba(148,163,184,0.6);
    }

    .block-panel {
      background: radial-gradient(circle at top, rgba(15,23,42,0.98), #020617);
      border-color: rgba(55,65,81,0.8);
    }

    .block-soft {
      background: radial-gradient(circle at top left, rgba(16,185,129,0.16), rgba(15,23,42,0.98));
      border-color: rgba(45,212,191,0.8);
    }

    /* ===== HERO ===== */
    .hero {
      min-height: calc(100vh - var(--nav-height) - 1.5rem);
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
      padding-top: 2rem;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.5);
      background: radial-gradient(circle at top left, rgba(248,250,252,0.08), transparent 60%);
      font-size: 0.72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 1.1rem;
    }

    .pill-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 6px rgba(34,197,94,0.25);
    }

    .hero h1 {
      font-size: clamp(2.3rem, 4vw, 3rem);
      line-height: 1.1;
      margin-bottom: 0.9rem;
    }

    .hero h1 span.gradient {
      background: linear-gradient(120deg, #4f46e5, #06b6d4, #22c55e);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      color: var(--muted);
      max-width: 520px;
      font-size: 0.98rem;
      margin-bottom: 1.6rem;
    }

    .hero-sub strong {
      color: #e5e7eb;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.5rem;
    }

    .btn {
      border-radius: 999px;
      padding: 0.7rem 1.4rem;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 500;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, border-color 0.15s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #4f46e5, #06b6d4);
      color: white;
      box-shadow: 0 16px 40px rgba(15,23,42,0.7);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 26px 60px rgba(15,23,42,0.85);
    }

    .btn-ghost {
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(148,163,184,0.7);
      color: var(--muted);
    }

    .btn-ghost:hover {
      background: rgba(15,23,42,1);
      color: var(--text);
      transform: translateY(-1px);
    }

    .hero-metas {
      display: flex;
      flex-wrap: wrap;
      gap: 1.4rem;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-top: 0.6rem;
    }

    .hero-metas strong {
      display: block;
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 0.1rem;
      letter-spacing: normal;
      text-transform: none;
    }

    /* HERO VISUAL */
    .hero-visual {
      position: relative;
    }

    .hero-orbit {
      position: relative;
      width: 100%;
      max-width: 420px;
      aspect-ratio: 4 / 5;
      margin-left: auto;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top, rgba(56,189,248,0.12), transparent 55%),
        radial-gradient(circle at bottom, rgba(79,70,229,0.2), transparent 60%),
        linear-gradient(145deg, #020617, #020617, #020617);
      border: 1px solid rgba(148,163,184,0.2);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      padding: 1.4rem;
      backdrop-filter: blur(var(--blur-card));
    }

    .hero-visual-grid {
      position: absolute;
      inset: 0;
      opacity: 0.09;
      background-image: linear-gradient(to right, rgba(148,163,184,0.65) 1px, transparent 1px),
                        linear-gradient(to bottom, rgba(148,163,184,0.65) 1px, transparent 1px);
      background-size: 26px 26px;
      mask-image: radial-gradient(circle at top, black 0, transparent 70%);
    }

    .hero-chip-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.2rem;
      position: relative;
      z-index: 1;
    }

    .hero-chip {
      padding: 0.32rem 0.85rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.92);
      border: 1px solid rgba(148,163,184,0.6);
      font-size: 0.72rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--muted);
    }

    .hero-chip span.dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #4ade80;
    }

    .hero-kpi {
      text-align: right;
      font-size: 0.74rem;
    }

    .hero-kpi strong {
      display: block;
      font-size: 1.05rem;
      color: #e5e7eb;
    }

    .hero-main-card {
      position: relative;
      z-index: 1;
      margin-top: 0.4rem;
      padding: 1rem;
      border-radius: 22px;
      background: radial-gradient(circle at top, rgba(148,163,184,0.08), transparent 60%);
      border: 1px solid rgba(148,163,184,0.45);
      backdrop-filter: blur(16px);
    }

    .hero-main-title {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 0.2rem;
    }

    .hero-main-heading {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .hero-tech-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.8rem;
    }

    .hero-tech-pills span {
      padding: 0.26rem 0.55rem;
      border-radius: 999px;
      font-size: 0.72rem;
      background: rgba(15,23,42,0.85);
      border: 1px solid rgba(148,163,184,0.6);
      color: var(--muted);
    }

    .hero-timeline {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.76rem;
      color: var(--muted);
    }

    .hero-timeline-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .hero-timeline-row strong {
      color: #e5e7eb;
      font-size: 0.8rem;
    }

    .hero-fab {
      position: absolute;
      right: -14px;
      bottom: 1.2rem;
      width: 70px;
      height: 70px;
      border-radius: 24px;
      background: conic-gradient(from 190deg, #f97316, #facc15, #22c55e, #06b6d4, #f97316);
      padding: 2px;
      box-shadow: 0 20px 45px rgba(15,23,42,0.9);
    }

    .hero-fab-inner {
      width: 100%;
      height: 100%;
      border-radius: 22px;
      background: #020617;
      display: grid;
      place-items: center;
      color: #f9fafb;
      font-size: 0.74rem;
      text-align: center;
      padding: 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .hero-fab-inner span {
      font-size: 1.8rem;
      display: block;
      line-height: 1;
      margin-bottom: 0.15rem;
    }

    .hero-floating-tag {
      position: absolute;
      left: -10px;
      bottom: 1.4rem;
      padding: 0.45rem 0.7rem;
      border-radius: 14px;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(148,163,184,0.6);
      font-size: 0.7rem;
      display: flex;
      align-items: center;
      gap: 0.35rem;
      color: var(--muted);
    }

    .hero-floating-tag span.badge {
      padding: 0.12rem 0.4rem;
      border-radius: 999px;
      background: rgba(22,163,74,0.2);
      border: 1px solid rgba(74,222,128,0.9);
      font-size: 0.7rem;
      color: #bbf7d0;
    }

/* === HERO RESPONSIVE 3D SCENE === */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  perspective: 1400px;
  perspective-origin: 20% 20%;
}

.responsive-scene {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  margin-left: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(56,189,248,0.18), transparent 60%),
    radial-gradient(circle at bottom, rgba(79,70,229,0.26), transparent 70%),
    linear-gradient(150deg, #020617, #020617);
  border: 1px solid rgba(148,163,184,0.3);
  box-shadow: 0 26px 70px rgba(0,0,0,0.8);
  overflow: hidden;
  padding: 1.4rem 1.2rem 1.2rem;
  transform-style: preserve-3d;
  transform: rotateX(14deg) rotateY(-18deg);
  transition: transform 0.35s ease-out;
}

.rs-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.28), transparent 65%),
    radial-gradient(circle at bottom right, rgba(16,185,129,0.23), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

/* Browser shell */
.rs-browser {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 78%;
  margin: 0 auto;
  border-radius: 24px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(148,163,184,0.75);
  box-shadow: 0 20px 55px rgba(15,23,42,0.95);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: width 0.4s ease, height 0.4s ease, border-radius 0.4s ease;
}

/* Browser chrome */
.rs-browser-bar {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  background: linear-gradient(to right, rgba(15,23,42,1), rgba(30,64,175,0.95));
  border-bottom: 1px solid rgba(30,64,175,0.9);
  font-size: 0.75rem;
}

.rs-dots {
  display: flex;
  gap: 0.25rem;
}

.rs-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(248,250,252,0.3);
}

.rs-tab {
  margin-left: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.7);
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e5e7eb;
}

.rs-actions {
  margin-left: auto;
  color: rgba(209,213,219,0.8);
}

/* URL bar */
.rs-url-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  background: rgba(15,23,42,0.98);
  border-bottom: 1px solid rgba(30,64,175,0.55);
  font-size: 0.76rem;
}

.rs-url-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,1);
  border: 1px solid rgba(148,163,184,0.7);
}

.rs-url-input {
  flex: 1;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.6);
  color: rgba(209,213,219,0.9);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rs-url-input span {
  opacity: 0.85;
}

.rs-url-btn {
  font-size: 0.8rem;
  color: rgba(148,163,184,0.9);
}

/* Browser body + scroll bar */
.rs-browser-body {
  position: relative;
  display: flex;
  height: calc(100% - 54px);
  padding: 0.65rem 0.6rem 0.6rem;
  gap: 0.4rem;
}

.rs-scroll {
  width: 6px;
  border-radius: 999px;
  background: rgba(15,23,42,1);
  border: 1px solid rgba(30,64,175,0.7);
  display: flex;
  align-items: flex-start;
  padding: 2px;
}

.rs-scroll-thumb {
  width: 100%;
  height: 28%;
  border-radius: 999px;
  background: rgba(96,165,250,0.9);
  animation: rsScroll 5s linear infinite;
}

@keyframes rsScroll {
  0%   { transform: translateY(0%); }
  50%  { transform: translateY(60%); }
  100% { transform: translateY(0%); }
}

/* Layout blocks – "fake UI" demonstrating responsiveness */

.rs-layout {
  position: relative;
  flex: 1;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(15,23,42,0.95), #020617);
  border: 1px solid rgba(30,64,175,0.9);
  padding: 0.6rem;
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  grid-template-rows: auto auto;
  gap: 0.4rem;
}

/* Hero area */
.rs-hero-block {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(56,189,248,0.3), rgba(79,70,229,0.2)),
    linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0.9));
  position: relative;
  overflow: hidden;
}

/* Side section */
.rs-side-block {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  border-radius: 10px;
  background:
    linear-gradient(to bottom, rgba(15,23,42,1), rgba(15,23,42,0.6));
  box-shadow: inset 0 0 0 1px rgba(30,64,175,0.6);
}

/* Cards grid */
.rs-card {
  border-radius: 8px;
  background: rgba(15,23,42,0.96);
  box-shadow: inset 0 0 0 1px rgba(51,65,85,0.9);
}

.rs-card-1 { grid-column: 1 / 2; grid-row: 2 / 3; }
.rs-card-2 { grid-column: 1 / 2; grid-row: 3 / 4; }
.rs-card-3 { display: none; }
.rs-card-4 { display: none; }

/* CAPTION */
.rs-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,184,0.7);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  backdrop-filter: blur(10px);
}

/* === RESPONSIVE STATES (DESKTOP → TABLET → MOBILE) === */

/* Base: desktop (wide, multi-column) – already defined above */

.responsive-scene.rs-state-tablet .rs-browser {
  width: 82%;
  height: 76%;
  border-radius: 22px;
}

.responsive-scene.rs-state-tablet .rs-layout {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
}

.responsive-scene.rs-state-tablet .rs-hero-block {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.responsive-scene.rs-state-tablet .rs-side-block {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  height: 60px;
}

.responsive-scene.rs-state-tablet .rs-card-1,
.responsive-scene.rs-state-tablet .rs-card-2 {
  grid-column: 1 / 2;
  grid-row: auto;
}

.responsive-scene.rs-state-tablet .rs-card-3 {
  display: block;
  grid-column: 1 / 2;
}

/* Mobile: narrow, single column, cards stacked */

.responsive-scene.rs-state-mobile .rs-browser {
  width: 52%;
  height: 74%;
  border-radius: 26px;
}

.responsive-scene.rs-state-mobile .rs-browser-bar {
  padding-inline: 0.45rem;
}

.responsive-scene.rs-state-mobile .rs-url-row {
  padding-inline: 0.45rem;
}

.responsive-scene.rs-state-mobile .rs-layout {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  padding: 0.5rem;
}

.responsive-scene.rs-state-mobile .rs-hero-block {
  grid-row: 1 / 2;
}

.responsive-scene.rs-state-mobile .rs-side-block {
  grid-row: 2 / 3;
  height: 44px;
}

.responsive-scene.rs-state-mobile .rs-card-1,
.responsive-scene.rs-state-mobile .rs-card-2,
.responsive-scene.rs-state-mobile .rs-card-3 {
  grid-row: auto;
  display: block;
}

.responsive-scene.rs-state-mobile .rs-card-4 {
  display: block;
}

/* Subtle scaling for each state */
.responsive-scene.rs-state-desktop .rs-browser {
  transform: translateZ(80px) rotateX(6deg) rotateY(-10deg);
}

.responsive-scene.rs-state-tablet .rs-browser {
  transform: translateZ(110px) rotateX(8deg) rotateY(-4deg);
}

.responsive-scene.rs-state-mobile .rs-browser {
  transform: translateZ(130px) rotateX(10deg) rotateY(0deg);
}

/* Cursor tilt */
@media (min-width: 900px) {
  .responsive-scene.rs-interactive {
    transition: transform 0.2s ease-out;
  }
}

/* Mobile layout fallback */
@media (max-width: 960px) {
  .hero-visual {
    justify-content: center;
    margin-top: 2rem;
  }
  .responsive-scene {
    margin-left: 0;
  }
}



    /* ===== SERVICES ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.4rem;
      margin-top: 2.2rem;
    }

    .service-card {
      position: relative;
      padding: 1.1rem 1rem;
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(15,23,42,0.9));
      border: 1px solid rgba(148,163,184,0.35);
      box-shadow: 0 18px 35px rgba(15,23,42,0.9);
      overflow: hidden;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
      cursor: default;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: -100%;
      background: conic-gradient(from 210deg, rgba(79,70,229,0.1), rgba(56,189,248,0.1), transparent 50%, transparent 100%);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 28px 65px rgba(15,23,42,0.9);
      border-color: rgba(248,250,252,0.7);
      background: linear-gradient(145deg, rgba(15,23,42,1), rgba(17,24,39,1));
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(15,23,42,1);
      border: 1px solid rgba(148,163,184,0.6);
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }

    .service-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .service-desc {
      font-size: 0.86rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .service-meta {
      font-size: 0.75rem;
      color: rgba(148,163,184,0.8);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .service-meta span.badge {
      padding: 0.16rem 0.4rem;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.6);
      font-size: 0.7rem;
    }

    /* ===== PROJECTS (STATS + SNAPSHOTS) ===== */
    .projects-section {
      margin-top: 0.5rem;
    }

    .projects-shell {
      margin-top: 2rem;
      border-radius: 26px;
      padding: 1.4rem 1.4rem 1.7rem;
      background: radial-gradient(circle at top, rgba(15,23,42,0.6), rgba(2,6,23,0.95));
      border: 1px solid rgba(148,163,184,0.4);
      box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    }

    .projects-header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .projects-header-left {
      flex: 1;
    }

    .projects-stats {
      display: flex;
      gap: 1.4rem;
      font-size: 0.8rem;
      color: var(--muted);
      flex-wrap: wrap;
    }

    .projects-stats strong {
      display: block;
      font-size: 1.1rem;
      color: #e5e7eb;
    }

    .project-filters {
      display: inline-flex;
      padding: 0.18rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(148,163,184,0.6);
      font-size: 0.78rem;
    }

    .filter-btn {
      border: none;
      padding: 0.32rem 0.75rem;
      border-radius: 999px;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .filter-btn.active {
      background: linear-gradient(135deg, rgba(79,70,229,0.9), rgba(14,165,233,0.9));
      color: white;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.3rem;
      margin-top: 0.6rem;
    }

    .project-card-main {
      position: relative;
      border-radius: 20px;
      padding: 1.1rem;
      background: radial-gradient(circle at top left, rgba(79,70,229,0.3), rgba(15,23,42,1));
      border: 1px solid rgba(191,219,254,0.7);
      overflow: hidden;
      cursor: pointer;
    }

    .project-card-main-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.18rem 0.55rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      font-size: 0.72rem;
      color: #bfdbfe;
      margin-bottom: 0.65rem;
      border: 1px solid rgba(129,140,248,0.9);
    }

    .project-card-main-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .project-card-main-text {
      font-size: 0.86rem;
      color: #cbd5f5;
      max-width: 90%;
      margin-bottom: 0.7rem;
    }

    .project-meta-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      font-size: 0.74rem;
      margin-bottom: 0.7rem;
    }

    .project-meta-chips span {
      padding: 0.18rem 0.5rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.8);
      border: 1px solid rgba(148,163,184,0.7);
      color: #e5e7eb;
    }

    .project-banner {
      position: absolute;
      right: -40px;
      bottom: -20px;
      width: 260px;
      height: 170px;
      border-radius: 999px;
      background: radial-gradient(circle at top left, rgba(59,130,246,0.9), rgba(129,140,248,0.4), transparent 70%);
      filter: blur(2px);
      opacity: 0.45;
      pointer-events: none;
    }

    .project-links {
      display: flex;
      gap: 0.7rem;
      font-size: 0.78rem;
      margin-top: 0.1rem;
    }

    .project-links a {
      display: inline-flex;
      align-items: center;
      gap: 0.32rem;
      padding: 0.32rem 0.65rem;
      border-radius: 999px;
      background: rgba(15,23,42,0.9);
      border: 1px solid rgba(129,140,248,0.7);
      color: #c7d2fe;
    }

    .project-links a.secondary {
      border-color: rgba(148,163,184,0.7);
      color: #e5e7eb;
    }

    .project-card-list {
      display: grid;
      gap: 0.8rem;
    }

    .project-mini {
      padding: 0.7rem 0.8rem;
      border-radius: 16px;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(148,163,184,0.6);
      font-size: 0.82rem;
      display: grid;
      grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
      gap: 0.5rem;
      align-items: center;
      cursor: pointer;
      transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
    }

    .project-mini:hover {
      border-color: rgba(248,250,252,0.9);
      background: rgba(15,23,42,1);
      transform: translateY(-2px);
    }

    .project-mini h4 {
      font-size: 0.9rem;
      margin-bottom: 0.2rem;
    }

    .project-mini p {
      font-size: 0.76rem;
      color: var(--muted);
    }

    .project-mini span.tag {
      font-size: 0.7rem;
      padding: 0.14rem 0.4rem;
      border-radius: 999px;
      background: rgba(31,41,55,1);
      border: 1px solid rgba(148,163,184,0.7);
      justify-self: flex-start;
      color: #e5e7eb;
    }

  /* ===== SHOWCASE (INTERACTIVE) ===== */
.showcase-section {
  margin-top: 0.5rem;
}

.showcase-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.showcase-viewport {
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(59,130,246,0.25), rgba(15,23,42,1));
  border: 1px solid rgba(129,140,248,0.9);
  box-shadow: 0 26px 70px rgba(15,23,42,0.95);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.showcase-browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(to right, rgba(15,23,42,0.98), rgba(30,64,175,0.95));
  border-bottom: 1px solid rgba(148,163,184,0.6);
  font-size: 0.78rem;
}

.showcase-dots {
  display: flex;
  gap: 0.25rem;
}

.showcase-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(248,250,252,0.35);
}

.showcase-url {
  flex: 1;
  margin: 0 0.8rem;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #e5e7eb;
}

.showcase-url span {
  opacity: 0.85;
}

/* Make this feel like a desktop viewport */
.showcase-view-inner {
  flex: 1;
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), #020617);
  position: relative;
  min-height: 380px;          /* Desktop-ish height */
}

@media (min-width: 1024px) {
  .showcase-view-inner {
    min-height: 480px;        /* Taller on bigger screens */
  }
}

.showcase-frame-placeholder {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  overflow: hidden;
  background: repeating-linear-gradient(
      135deg,
      rgba(15,23,42,1),
      rgba(15,23,42,1) 10px,
      rgba(30,64,175,0.7) 10px,
      rgba(30,64,175,0.7) 20px
  );
  display: grid;
  place-items: center;
}

.showcase-frame-placeholder span {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px dashed rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
}

.showcase-iframe {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.5);
  background: #020617;
}

.showcase-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.showcase-meta {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.showcase-meta strong {
  color: #e5e7eb;
}

.showcase-meta-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.showcase-meta-tags span {
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.65);
  font-size: 0.74rem;
  background: rgba(15,23,42,0.9);
}

/* Right side list */

.showcase-list-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.showcase-list-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.showcase-list {
  display: grid;
  gap: 0.8rem;
  font-size: 0.86rem;
}

.showcase-item {
  position: relative;
  border-radius: 16px;
  padding: 0.7rem 0.9rem 0.7rem 0.7rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(75,85,99,0.9);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  cursor: pointer;
  transition: background 0.14s ease, border-color 0.14s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.showcase-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to bottom, transparent, rgba(129,140,248,0.7), transparent);
  opacity: 0;
  transition: opacity 0.14s ease;
}

.showcase-item:hover {
  background: radial-gradient(circle at top left, rgba(79,70,229,0.35), rgba(15,23,42,1));
  border-color: rgba(191,219,254,0.9);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.9);
}

.showcase-item:hover::before {
  opacity: 1;
}

.showcase-item:focus-visible {
  outline: 2px solid rgba(129,140,248,1);
  outline-offset: 2px;
}

.showcase-thumb {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, rgba(59,130,246,0.7), rgba(15,23,42,1));
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: #e5e7eb;
  font-weight: 600;
}

.showcase-item-content h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.showcase-item-content p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.showcase-item-meta {
  font-size: 0.75rem;
  color: rgba(148,163,184,0.9);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.showcase-item-meta span {
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(75,85,99,0.9);
  background: rgba(17,24,39,1);
}

/* Active/selected state */
.showcase-item.active {
  background: radial-gradient(circle at top left, rgba(79,70,229,0.8), rgba(15,23,42,0.98));
  border-color: rgba(191,219,254,1);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.9);
}

.showcase-item.active::before {
  opacity: 1;
}

.showcase-item.active .showcase-item-content h4 {
  color: #e5e7eb;
}

.showcase-item-badge {
  font-size: 0.7rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(191,219,254,0.9);
  color: #bfdbfe;
  background: rgba(15,23,42,0.95);
  margin-left: auto;
}


/* ===== TESTIMONIALS (more authentic) ===== */
.testimonials-section {
  margin-top: 0.5rem;
}

.testimonials-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
  gap: 1.8rem;
  align-items: stretch;
}

.testimonial-summary {
  display: grid;
  gap: 1.1rem;
  align-content: flex-start;
}

.testimonial-score-card {
  border-radius: 24px;
  padding: 1.3rem 1.2rem 1.2rem;
  border: 1px solid rgba(52,211,153,0.85);
  background: radial-gradient(circle at top left, rgba(16,185,129,0.28), rgba(15,23,42,0.96));
  box-shadow: 0 24px 55px rgba(6,95,70,0.9);
  font-size: 0.9rem;
}

.testimonial-score-main {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.score-number {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #bbf7d0;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.score-stars {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #facc15;
}

.score-label {
  font-size: 0.8rem;
  color: #dcfce7;
}

.testimonial-score-list {
  list-style: none;
  margin: 0 0 0.7rem;
  padding: 0;
  font-size: 0.82rem;
  color: #bbf7d0;
}

.testimonial-score-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-score-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
}

.testimonial-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.testimonial-badge {
  font-size: 0.72rem;
  padding: 0.16rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(187,247,208,0.75);
  background: rgba(6,95,70,0.85);
  color: #bbf7d0;
  white-space: nowrap;
}

.testimonial-badge.secondary {
  border-color: rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.95);
  color: #e5e7eb;
}

.testimonial-logos {
  border-radius: 20px;
  padding: 0.9rem 0.9rem 1rem;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.9);
  font-size: 0.8rem;
}

.testimonial-logos-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.testimonial-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.testimonial-logo-pill {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,1);
  font-size: 0.74rem;
  color: #e5e7eb;
}

/* Right column */
.testimonial-list-column {
  display: grid;
  gap: 0.9rem;
}

.testimonial-card {
  border-radius: 20px;
  padding: 1rem 1rem 0.9rem;
  background: rgba(15,23,42,0.96);
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow: 0 18px 40px rgba(15,23,42,0.85);
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;

  /* NEW – base transform + transitions */
  transform-origin: center top;
  transform: translateY(0) rotateX(0deg) rotateY(0deg);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out,
    opacity 0.18s ease-out;
}

/* highlight card can start slightly lifted */
.testimonial-card.is-highlight {
  border-color: rgba(52,211,153,0.9);
  background: radial-gradient(circle at top left, rgba(16,185,129,0.28), rgba(15,23,42,0.98));
}

/* FOCUS / HOVER STATE – the “focus perspective” */
.testimonial-card:hover,
.testimonial-card:focus-visible {
  transform: translateY(-6px) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 26px 70px rgba(15,23,42,0.95);
  border-color: rgba(191,219,254,0.95);
  background: radial-gradient(circle at top left, rgba(59,130,246,0.24), rgba(15,23,42,0.98));
  outline: none;
}

/* When hovering anywhere over the column, soften all cards a bit… */
.testimonial-list-column:hover .testimonial-card {
  opacity: 0.6;
}

/* …except the one under the pointer/focus */
.testimonial-list-column:hover .testimonial-card:hover,
.testimonial-card:focus-visible {
  opacity: 1;
}


.testimonial-stars-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.testimonial-stars-row .stars {
  font-size: 0.9rem;
  color: #facc15;
  letter-spacing: 0.12em;
}

.testimonial-stars-row .stars-label {
  font-size: 0.78rem;
}

.testimonial-quote {
  color: #d1d5db;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f9fafb;
}

.testimonial-author-info {
  font-size: 0.78rem;
}

.testimonial-author-info strong {
  display: block;
  color: #e5e7eb;
}

.testimonial-author-info span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.testimonial-project-label {
  margin-top: 0.1rem;
  color: rgba(209,213,219,0.9);
}

.testimonial-list-column {
  display: grid;
  gap: 0.9rem;

  /* NEW – for 3D effect */
  perspective: 1200px;
  perspective-origin: top;
}


/* Responsive */
@media (max-width: 960px) {
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .testimonial-score-main {
    flex-direction: row;
    align-items: center;
  }
}

    /* ===== ABOUT / PROCESS ===== */
    .about-grid {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.6rem;
    }

    .about-points {
      display: grid;
      gap: 0.9rem;
      font-size: 0.86rem;
      color: var(--muted);
    }

    .about-point {
      display: flex;
      gap: 0.75rem;
    }

    .about-point-badge {
      margin-top: 0.2rem;
      width: 20px;
      height: 20px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      font-size: 0.7rem;
      background: rgba(15,23,42,1);
      border: 1px solid rgba(148,163,184,0.7);
      color: #a5b4fc;
    }

    .about-point h4 {
      font-size: 0.9rem;
      color: #e5e7eb;
      margin-bottom: 0.1rem;
    }

    .process-steps {
      border-radius: 22px;
      padding: 1.1rem 1rem;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(148,163,184,0.6);
      font-size: 0.78rem;
    }

    .process-row {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      margin-bottom: 0.5rem;
    }

    .process-step {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: rgba(79,70,229,0.15);
      border: 1px solid rgba(129,140,248,0.8);
      display: grid;
      place-items: center;
      font-size: 0.75rem;
      color: #e5e7eb;
    }

    .process-row h5 {
      font-size: 0.84rem;
      color: #e5e7eb;
      margin-bottom: 0.08rem;
    }

    .process-row p {
      color: var(--muted);
    }

    /* ===== CONTACT ===== */
    .contact-section {
      margin-top: 0.5rem;
    }

    .contact-grid {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 1.6rem;
    }

    form {
      display: grid;
      gap: 0.85rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      font-size: 0.84rem;
    }

    .field label {
      color: var(--muted);
    }

    .field input,
    .field textarea,
    .field select {
      border-radius: 12px;
      border: 1px solid rgba(148,163,184,0.6);
      background: rgba(15,23,42,0.95);
      color: #e5e7eb;
      padding: 0.55rem 0.7rem;
      font-size: 0.86rem;
      outline: none;
      transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      font-family: inherit;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: rgba(129,140,248,0.95);
      box-shadow: 0 0 0 1px rgba(129,140,248,0.5);
      background: rgba(15,23,42,1);
    }

    .field textarea {
      min-height: 120px;
      resize: vertical;
    }

    .contact-meta {
      font-size: 0.86rem;
      color: var(--muted);
      display: grid;
      gap: 0.9rem;
    }

    .contact-meta h3 {
      font-size: 1rem;
      color: #e5e7eb;
    }

    .contact-row {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
    }

    .contact-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: rgba(15,23,42,0.95);
      border: 1px solid rgba(148,163,184,0.7);
      display: grid;
      place-items: center;
      font-size: 0.9rem;
    }

    .contact-links {
      display: grid;
      gap: 0.25rem;
    }

    .contact-links a {
      font-size: 0.86rem;
      color: #e5e7eb;
    }

    .contact-links span {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* ===== FOOTER ===== */
    footer {
      border-top: 1px solid rgba(148,163,184,0.3);
      margin-top: 1rem;
      padding: 1.2rem 1.25rem 2rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      justify-content: space-between;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 1.1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--muted);
    }

    .footer-links a:hover {
      color: var(--text);
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 960px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-visual {
        order: -1;
      }
      .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .projects-grid,
      .testimonials-grid,
      .about-grid,
      .contact-grid,
      .showcase-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .project-card-main {
        min-height: 190px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .burger {
        display: flex;
      }
      .nav-mobile {
        display: flex;
      }
      .hero {
        padding-top: 1.5rem;
      }
      section {
        padding: 3rem 0;
      }
      .services-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .testimonial-list {
        grid-template-columns: minmax(0, 1fr);
      }
      .projects-shell {
        padding: 1.1rem 1rem 1.4rem;
      }
      .project-banner {
        right: -70px;
        bottom: -50px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }
      .projects-stats {
        flex-direction: column;
      }
      .hero-fab {
        display: none;
      }
      .hero-floating-tag {
        left: 10px;
        bottom: 0.7rem;
      }
      .section-block {
        padding: 1.3rem 1.1rem 1.6rem;
        border-radius: 20px;
      }
    }