
    :root {
      --bg-main: #050816;
      --bg-alt: #0b1020;
      --bg-soft: #101528;
      --border-subtle: rgba(255, 255, 255, 0.05);
      --accent: #06b6d4;
      --accent-soft: rgba(6, 182, 212, 0.16);
      --accent-strong: #0891b2;
      --accent-warm: #f59e0b;
      --accent-purple: #8b5cf6;
      --text-main: #f9fafb;
      --text-soft: #d1d5db;
      --text-muted: #9ca3af;
      --danger: #f56565;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-pill: 999px;
      --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
      --shadow-subtle: 0 12px 32px rgba(0, 0, 0, 0.4);
      --max-width: 1280px;
      --font-display: 'Space Grotesk', system-ui, sans-serif;
      --font-body: 'Inter', system-ui, sans-serif;
    }

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

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: #000;
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 10%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        linear-gradient(90deg, transparent 0%, rgba(6, 182, 212, 0.03) 50%, transparent 100%);
      animation: shimmer 20s infinite linear;
      pointer-events: none;
      z-index: 0;
    }

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

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

    .page-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 1;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(24px) saturate(180%);
      background: rgba(5, 8, 22, 0.8);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: all 0.3s ease;
    }

    .nav-wrap.scrolled {
      background: rgba(5, 8, 22, 0.95);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
    }

    .brand:hover {
      transform: translateY(-2px);
    }

    .brand-mark {
      height: 40px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
      position: relative;
    }

    .brand-mark::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .brand:hover .brand-mark::before {
      opacity: 1;
    }

    .brand-mark img {
      height: 32px;
      object-fit: cover;
      position: relative;
      z-index: 1;
    }

    .brand-text-main {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .brand-text-sub {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-soft);
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-purple));
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

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

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

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text-soft);
      background: rgba(15, 23, 42, 0.6);
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn:hover::before {
      opacity: 1;
    }

    .btn-primary {
      background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
      color: #000;
      border-color: transparent;
      box-shadow: 0 12px 28px rgba(6, 182, 212, 0.4);
      font-weight: 700;
    }

    .btn-primary::before {
      background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
      opacity: 0;
    }

    .btn-primary:hover::before {
      opacity: 1;
    }

    .btn span.icon {
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .btn:hover span.icon {
      transform: translateX(2px);
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-subtle);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 16px 40px rgba(6, 182, 212, 0.5);
    }

    .btn-muted {
      background: rgba(15, 23, 42, 0.85);
    }

    .main {
      flex: 1;
    }

    .section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 80px 32px;
    }

    .section-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 60px;
      padding-top: 100px;
      padding-bottom: 80px;
      align-items: center;
      position: relative;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(6, 182, 212, 0.3);
      color: var(--accent);
      animation: fadeInUp 0.6s ease;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 16px rgba(6, 182, 212, 0.8);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.2); }
    }

    .hero-title {
      margin-top: 32px;
      font-family: var(--font-display);
      font-size: clamp(42px, 5.5vw, 64px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.1;
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .hero-title span.accent {
      background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 50%, #f59e0b 100%);
      background-size: 200% 200%;
      animation: gradient-shift 8s ease infinite;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .hero-subtitle {
      margin-top: 24px;
      font-size: 18px;
      line-height: 1.7;
      color: var(--text-soft);
      max-width: 42rem;
      animation: fadeInUp 1s ease 0.4s backwards;
    }

    .hero-subtitle strong {
      color: #fff;
      font-weight: 600;
    }

    .hero-cta-row {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .hero-meta-row {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-meta-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-meta-pill span.dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.7);
    }

    .hero-right {
      position: relative;
      min-height: 260px;
    }

    .hero-panel {
      position: absolute;
      inset: 0;
      border-radius: 26px;
      background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.24) 0, rgba(15, 23, 42, 0.96) 38%, #020617 100%);
      border: 1px solid rgba(148, 163, 184, 0.25);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-panel-tabs {
      display: inline-flex;
      background: rgba(15, 23, 42, 0.9);
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.4);
      padding: 2px;
    }

    .hero-panel-tab {
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 11px;
      opacity: 0.7;
    }

    .hero-panel-tab--active {
      background: linear-gradient(to right, rgba(79, 209, 197, 0.12), rgba(246, 173, 85, 0.12));
      color: #e5e7eb;
      opacity: 1;
    }

    .hero-panel-body {
      flex: 1;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 10px;
      align-items: stretch;
    }

    .hero-metric-card {
      border-radius: var(--radius-lg);
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.3);
      padding: 12px 12px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
    }

    .hero-metric-label {
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-metric-value {
      font-size: 22px;
      font-weight: 650;
      letter-spacing: -0.04em;
    }

    .hero-metric-note {
      font-size: 11px;
      color: var(--text-soft);
    }

    .hero-metric-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 6px;
    }

    .chip {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      padding: 3px 8px;
      font-size: 10px;
      color: var(--text-muted);
      background: rgba(15, 23, 42, 0.9);
    }

    .chip-highlight {
      border-color: rgba(79, 209, 197, 0.8);
      background: var(--accent-soft);
      color: #e0fdf9;
    }

    .hero-mini-grid {
      display: grid;
      grid-template-rows: 1.1fr 0.9fr;
      gap: 8px;
    }

    .hero-screenshot {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: radial-gradient(circle at top left, rgba(79, 209, 197, 0.32) 0, rgba(15, 23, 42, 0.96) 45%, #020617 100%);
      border: 1px solid rgba(148, 163, 184, 0.4);
    }

    .hero-screenshot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.88;
    }

    .hero-screenshot-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0) 0, rgba(15, 23, 42, 0.78) 60%, rgba(15, 23, 42, 0.96) 100%);
    }

    .hero-screenshot-label {
      position: absolute;
      left: 10px;
      bottom: 10px;
      font-size: 11px;
      color: #e5e7eb;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .hero-screenshot-label span {
      color: var(--text-muted);
      font-size: 10px;
    }

    .hero-mini-stat {
      border-radius: var(--radius-md);
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.35);
      padding: 10px 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hero-mini-stat-title {
      font-size: 11px;
      color: var(--text-soft);
    }

    .hero-mini-stat-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-mini-stat-row strong {
      font-size: 15px;
      color: #e5e7eb;
    }

    .section-header {
      margin-bottom: 48px;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: flex-end;
      flex-wrap: wrap;
    }

    .section-kicker {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      margin-bottom: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .section-kicker::before {
      content: '';
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), transparent);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 42px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-soft);
      max-width: 32rem;
      margin-top: 12px;
    }

    .pill-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .pill-strip span {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.3);
      padding: 3px 9px;
      background: rgba(15, 23, 42, 0.8);
    }

    .grid-services {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    .service-card {
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(5, 8, 22, 0.8) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 32px 24px;
      box-shadow: var(--shadow-subtle);
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent-purple));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      border-color: rgba(6, 182, 212, 0.3);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

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

    .service-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent);
      position: relative;
      z-index: 1;
    }

    .service-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
      position: relative;
      z-index: 1;
    }

    .service-body {
      font-size: 14px;
      color: var(--text-soft);
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    .service-list {
      margin-top: 8px;
      font-size: 13px;
      color: var(--text-muted);
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .service-list li {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin-bottom: 8px;
      padding-left: 4px;
      transition: color 0.3s ease;
    }

    .service-card:hover .service-list li {
      color: var(--text-soft);
    }

    .service-list li::before {
      content: "→";
      color: var(--accent);
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .section-alt {
      background: 
        radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
      position: relative;
    }

    .section-alt::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
    }

    .desmo-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 40px;
      align-items: flex-start;
    }

    .badge-desmo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(6, 182, 212, 0.3);
      font-size: 13px;
      font-weight: 500;
      color: var(--text-soft);
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    }

    .badge-desmo span.tag {
      border-radius: var(--radius-pill);
      padding: 4px 12px;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 11px;
      font-weight: 700;
    }

    .desmo-title {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 700;
      margin-top: 24px;
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .desmo-body {
      font-size: 16px;
      color: var(--text-soft);
      line-height: 1.7;
      max-width: 36rem;
    }

    .desmo-grid {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      font-size: 14px;
    }

    .desmo-item {
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(5, 8, 22, 0.7) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .desmo-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, var(--accent), var(--accent-purple));
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.3s ease;
    }

    .desmo-item:hover {
      border-color: rgba(6, 182, 212, 0.3);
      transform: translateX(4px);
    }

    .desmo-item:hover::before {
      transform: scaleY(1);
    }

    .desmo-item strong {
      display: block;
      margin-bottom: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
    }

    .desmo-cta-row {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .desmo-elevation {
      border-radius: 20px;
      background: radial-gradient(circle at top, rgba(79, 209, 197, 0.24) 0, rgba(15, 23, 42, 0.96) 34%, #020617 100%);
      border: 1px solid rgba(148, 163, 184, 0.38);
      padding: 14px 14px 12px;
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 10px;
    }

    .desmo-elevation-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--text-soft);
    }

    .desmo-elevation-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 10px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .desmo-elevation-grid ul {
      list-style: none;
    }

    .desmo-elevation-grid li {
      margin-bottom: 4px;
      display: flex;
      gap: 6px;
      align-items: baseline;
    }

    .desmo-elevation-grid li::before {
      content: "▸";
      font-size: 10px;
      color: var(--accent);
    }

    .desmo-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(15, 23, 42, 0.8);
      border-radius: 999px;
      padding: 3px 8px;
      border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .desmo-badge span.dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent-strong);
      box-shadow: 0 0 12px rgba(45, 212, 191, 0.9);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 20px;
    }

    .portfolio-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.1);
      min-height: 280px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    .portfolio-card:hover {
      transform: translateY(-8px) scale(1.02);
      border-color: rgba(6, 182, 212, 0.4);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
    }

    .portfolio-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.85;
      transition: all 0.4s ease;
    }

    .portfolio-card:hover img {
      opacity: 1;
      transform: scale(1.05);
    }

    .portfolio-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 70%);
      transition: opacity 0.4s ease;
    }

    .portfolio-card:hover::after {
      opacity: 0.7;
    }

    .portfolio-label {
      position: absolute;
      left: 20px;
      bottom: 20px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      z-index: 1;
      transition: transform 0.3s ease;
    }

    .portfolio-card:hover .portfolio-label {
      transform: translateY(-4px);
    }

    .portfolio-label span {
      display: block;
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
      font-weight: 400;
    }

    .strip-muted {
      margin-top: 12px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .case-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 32px;
      font-size: 15px;
      color: var(--text-soft);
    }

    .case-card {
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(5, 8, 22, 0.7) 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 32px;
      box-shadow: var(--shadow-subtle);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .case-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0% 0%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .case-card:hover {
      transform: translateY(-4px);
      border-color: rgba(6, 182, 212, 0.3);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    }

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

    .case-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .case-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 16px;
      line-height: 1.3;
      position: relative;
      z-index: 1;
    }

    .case-body {
      font-size: 15px;
      color: var(--text-soft);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .case-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 20px;
      font-size: 12px;
      position: relative;
      z-index: 1;
    }

    .case-metric {
      border-radius: var(--radius-pill);
      padding: 8px 14px;
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.2);
      color: var(--text-soft);
      text-align: center;
      transition: all 0.3s ease;
    }

    .case-metric:hover {
      background: rgba(6, 182, 212, 0.15);
      border-color: rgba(6, 182, 212, 0.4);
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 40px;
      font-size: 16px;
      color: var(--text-soft);
      line-height: 1.7;
    }

    .about-pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      margin-top: 16px;
    }

    .about-pill {
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 10px 18px;
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(5, 8, 22, 0.7) 100%);
      color: var(--text-soft);
      transition: all 0.3s ease;
      font-weight: 500;
    }

    .about-pill:hover {
      border-color: rgba(6, 182, 212, 0.4);
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
      transform: translateY(-2px);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 28px;
      font-size: 15px;
      color: var(--text-soft);
    }

    .contact-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(5, 8, 22, 0.7) 100%);
      padding: 32px;
      box-shadow: var(--shadow-subtle);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .contact-card:hover {
      border-color: rgba(6, 182, 212, 0.3);
      transform: translateY(-4px);
    }

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

    .contact-card h4 {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }

    .contact-card p {
      position: relative;
      z-index: 1;
      line-height: 1.7;
    }

    .contact-note {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 16px;
      position: relative;
      z-index: 1;
    }

    .footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(0, 0, 0, 0.8);
      padding: 40px 32px;
      margin-top: 80px;
      position: relative;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-brand img {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      object-fit: cover;
    }

    .footer-brand strong {
      color: var(--text-main);
      font-weight: 600;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 14px;
    }

    .footer-links a {
      opacity: 0.7;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .footer-links a:hover {
      opacity: 1;
      color: var(--accent);
    }

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

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: space-between;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.04);
    }

    @media (max-width: 900px) {
      .section-hero {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-right {
        order: -1;
        min-height: 230px;
      }
      .grid-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .desmo-layout,
      .case-layout,
      .about-layout,
      .contact-layout {
        grid-template-columns: minmax(0, 1fr);
      }
      .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* Mobile menu toggle button */
    .mobile-menu-toggle {
      display: none;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 8px 12px;
      cursor: pointer;
      flex-direction: column;
      gap: 4px;
      transition: all 0.3s ease;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--text-main);
      transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translateY(6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-6px);
    }

    @media (max-width: 720px) {
      .nav-inner {
        padding-inline: 16px;
        gap: 12px;
      }

      .mobile-menu-toggle {
        display: flex;
      }

      .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(24px);
        padding: 24px;
        gap: 20px;
        z-index: 100;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links a {
        font-size: 16px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .nav-cta {
        margin-left: auto;
      }
      .section {
        padding-inline: 16px;
      }
      .hero-title {
        font-size: 28px;
      }
      .grid-services {
        grid-template-columns: minmax(0, 1fr);
      }
      .portfolio-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }
  
/* Modal Overlay & Container */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-radius: 18px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 22px;
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f9fafb;
}

.modal-body {
  padding: 28px;
}

.contact-intro {
  margin-bottom: 24px;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
}

.contact-email-display {
  background: rgba(79, 209, 197, 0.08);
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.email-icon {
  color: #4fd1c5;
  font-size: 20px;
}

.email-link {
  color: #4fd1c5;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.email-link:hover {
  color: #38b2ac;
  text-decoration: underline;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: #6b7280;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #f9fafb;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4fd1c5;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.1);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-submit {
  flex: 1;
  padding: 13px 24px;
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(79, 209, 197, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-cancel {
  padding: 13px 24px;
  background: transparent;
  color: #9ca3af;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #f9fafb;
  border-color: rgba(255, 255, 255, 0.2);
}

.form-success {
  display: none;
  padding: 16px 18px;
  background: rgba(72, 187, 120, 0.12);
  border: 1px solid rgba(72, 187, 120, 0.3);
  border-radius: 10px;
  color: #9ae6b4;
  font-size: 14px;
  text-align: center;
  margin-top: 18px;
}

.form-success.active {
  display: block;
}
