/* ── Reset & Variables ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:        #080810;
      --bg2:       #0d0d1a;
      --bg3:       #111122;
      --surface:   rgba(255,255,255,0.04);
      --border:    rgba(255,255,255,0.08);
      --text:      #e8e8f0;
      --muted:     rgba(232,232,240,0.5);
      --blue:      #4f8ef7;
      --purple:    #9b6bff;
      --cyan:      #38d9f5;
      --grad:      linear-gradient(135deg, #4f8ef7, #9b6bff);
      --grad2:     linear-gradient(135deg, #9b6bff, #38d9f5);
      --glow-blue: rgba(79,142,247,0.28);
      --glow-pur:  rgba(155,107,255,0.28);
      --radius:    16px;
      --radius-lg: 24px;
      --fs-xs:     0.75rem;
      --fs-sm:     0.875rem;
      --fs-base:   1rem;
      --fs-lg:     1.25rem;
      --fs-xl:     1.5rem;
      --fs-2xl:    2rem;
      --fs-3xl:    2.75rem;
      --fs-4xl:    3.75rem;
      --fs-5xl:    5rem;
      --ease:      cubic-bezier(0.16, 1, 0.3, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ── Noise texture overlay ─────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 9999;
    }

    /* ── Typography ────────────────────────────────────────── */
    h1, h2, h3, h4 {
      font-family: 'Syne', sans-serif;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .grad-text2 {
      background: var(--grad2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── Utility ───────────────────────────────────────────── */
    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section { padding: 120px 0; }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: var(--surface);
      font-size: var(--fs-xs);
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      margin-bottom: 28px;
    }
    .badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); display:inline-block; }

    .section-label {
      font-size: var(--fs-xs);
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
      font-weight: 800;
      margin-bottom: 20px;
    }

    .section-sub {
      font-size: var(--fs-lg);
      color: var(--muted);
      max-width: 520px;
      line-height: 1.7;
    }

    /* ── Buttons ───────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-size: var(--fs-base);
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      border: none;
      transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
      position: relative;
      overflow: hidden;
    }
    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0);
      transition: background 0.2s;
    }
    .btn:hover::after { background: rgba(255,255,255,0.09); }
    .btn:hover { transform: translateY(-3px); }
    .btn:active { transform: translateY(0); }

    .btn-primary {
      background: var(--grad);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 0 36px var(--glow-blue);
    }
    .btn-primary:hover {
      box-shadow: 0 0 56px var(--glow-blue), 0 0 28px var(--glow-pur);
      filter: brightness(1.08);
    }

    .btn-ghost {
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      backdrop-filter: blur(12px);
    }
    .btn-ghost:hover {
      border-color: rgba(79,142,247,0.45);
      box-shadow: 0 0 28px var(--glow-blue);
    }

    .btn-whatsapp {
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff;
      font-weight: 600;
      box-shadow: 0 0 32px rgba(37,211,102,0.3);
    }
    .btn-whatsapp:hover {
      box-shadow: 0 0 52px rgba(37,211,102,0.55);
      filter: brightness(1.07);
    }

    /* ── Nav ───────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
    }
    nav.scrolled {
      background: rgba(8,8,16,0.88);
      backdrop-filter: blur(28px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-family: 'Syne', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      text-decoration: none;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.01em;
    }
    .logo-icon {
      width: 34px; height: 34px;
      border-radius: 10px;
      background: var(--grad);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      box-shadow: 0 0 24px var(--glow-blue);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: var(--fs-sm);
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      width: 24px; height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ── Mobile nav ────────────────────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(8,8,16,0.97);
      backdrop-filter: blur(24px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Syne', sans-serif;
      font-size: var(--fs-2xl);
      font-weight: 700;
      text-decoration: none;
      color: var(--text);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--blue); }

    /* ── Hero ──────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .hero-content { position: relative; z-index: 2; }

    .hero-title {
      font-size: clamp(2.8rem, 5.5vw, var(--fs-5xl));
      font-weight: 800;
      line-height: 1.08;
      margin-bottom: 20px;
    }

    .hero-sub {
      font-size: var(--fs-lg);
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 16px;
      max-width: 460px;
    }

    /* Trust line */
    .hero-trust {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: var(--fs-sm);
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 36px;
      padding: 8px 18px;
      border-radius: 100px;
      background: rgba(79,142,247,0.07);
      border: 1px solid rgba(79,142,247,0.18);
    }
    .trust-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--muted);
      display: inline-block;
      flex-shrink: 0;
    }
    .trust-highlight { color: var(--blue); font-weight: 700; }

    .hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 52px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .stat-icon { font-size: 1.3rem; margin-bottom: 6px; display: block; }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: var(--fs-xl);
      font-weight: 800;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2px;
    }
    .stat-label { font-size: var(--fs-xs); color: var(--muted); letter-spacing: 0.05em; font-weight: 500; }

    /* 3D Hero Visual */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 520px;
    }

    .orb-scene {
      position: relative;
      width: 400px;
      height: 400px;
    }

    .orb-main {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 220px; height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #6fa3ff, #4f6ef7 40%, #9b6bff 70%, #060614);
      box-shadow:
        0 0 70px rgba(79,142,247,0.55),
        0 0 140px rgba(155,107,255,0.32),
        inset 0 0 60px rgba(255,255,255,0.06);
      animation: float 6s ease-in-out infinite;
    }

    .orb-ring {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) rotateX(70deg);
      border-radius: 50%;
      border: 1.5px solid rgba(79,142,247,0.3);
      animation: ringRotate 12s linear infinite;
    }
    .orb-ring-1 { width: 300px; height: 300px; animation-duration: 10s; }
    .orb-ring-2 { width: 360px; height: 360px; animation-duration: 16s; animation-direction: reverse; border-color: rgba(155,107,255,0.22); }

    .orb-dot {
      position: absolute;
      border-radius: 50%;
      animation: floatFree 4s ease-in-out infinite;
    }

    .orb-card {
      position: absolute;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      backdrop-filter: blur(16px);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
      animation: floatFree 5s ease-in-out infinite;
    }
    .orb-card-icon { font-size: 1.4rem; }
    .orb-card-text { font-size: var(--fs-xs); font-weight: 600; color: var(--text); white-space: nowrap; }
    .orb-card-sub  { font-size: 0.65rem; color: var(--muted); }
    .orb-card-a { top: 5%; right: -5%; animation-delay: -1s; }
    .orb-card-b { bottom: 10%; left: -5%; animation-delay: -2s; animation-duration: 6s; }

    /* Ambient blobs */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(110px);
      pointer-events: none;
      z-index: 0;
    }
    .blob-1 { width:650px;height:650px; background:rgba(79,142,247,0.13); top:-200px;right:-200px; }
    .blob-2 { width:550px;height:550px; background:rgba(155,107,255,0.11); bottom:-200px;left:-100px; }
    .blob-3 { width:400px;height:400px; background:rgba(56,217,245,0.07); top:50%;left:50%;transform:translate(-50%,-50%); }

    /* ── Services ──────────────────────────────────────────── */
    #services { background: var(--bg2); position: relative; }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-bottom: 64px;
    }

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

    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s var(--ease);
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 0% 0%, var(--card-glow, rgba(79,142,247,0.08)), transparent 70%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .service-card:hover { transform: translateY(-8px); border-color: rgba(79,142,247,0.3); box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 44px var(--card-shadow, var(--glow-blue)); }
    .service-card:hover::before { opacity: 1; }
    .service-card:nth-child(2) { --card-glow: rgba(155,107,255,0.08); --card-shadow: var(--glow-pur); }
    .service-card:nth-child(3) { --card-glow: rgba(56,217,245,0.08); --card-shadow: rgba(56,217,245,0.2); }

    .service-icon {
      width: 56px; height: 56px;
      border-radius: 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 28px;
      position: relative; z-index: 1;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .service-card:hover .service-icon { box-shadow: 0 0 24px var(--card-shadow, var(--glow-blue)); transform: scale(1.1); }

    .service-title { font-size: var(--fs-xl); font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; }
    .service-desc { font-size: var(--fs-sm); color: var(--muted); line-height: 1.75; position: relative; z-index: 1; }

    .service-features {
      list-style: none;
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative; z-index: 1;
    }
    .service-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: var(--fs-sm);
      color: var(--muted);
    }
    .service-features li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0;
    }

    /* ── Portfolio ─────────────────────────────────────────── */
    #portfolio { position: relative; }

    .portfolio-header { text-align: center; margin-bottom: 64px; }
    .portfolio-header .section-sub { margin: 0 auto; }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .portfolio-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--bg3);
      cursor: pointer;
      transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
      position: relative;
    }
    .portfolio-card:hover {
      transform: translateY(-12px) scale(1.015);
      box-shadow: 0 36px 90px rgba(0,0,0,0.55), 0 0 70px var(--p-glow, var(--glow-blue));
      border-color: rgba(79,142,247,0.2);
    }
    .portfolio-card:nth-child(1) { --p-glow: rgba(79,142,247,0.32); }
    .portfolio-card:nth-child(2) { --p-glow: rgba(155,107,255,0.32); }
    .portfolio-card:nth-child(3) { --p-glow: rgba(56,217,245,0.32); }

    .portfolio-preview { height: 220px; position: relative; overflow: hidden; }

    .mockup-browser { background: #1a1a2e; width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; }
    .mockup-bar { background: #12121f; padding: 10px 14px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
    .mockup-dot { width:8px;height:8px;border-radius:50%; }
    .mockup-dot:nth-child(1) { background:#ff5f57; }
    .mockup-dot:nth-child(2) { background:#febc2e; }
    .mockup-dot:nth-child(3) { background:#28c840; }
    .mockup-url { flex:1; background:rgba(255,255,255,0.05); border-radius:4px; height:18px; margin-left:8px; }
    .mockup-body { flex: 1; overflow: hidden; position: relative; }

    /* Clinic mockup */
    .clinic-hero-bar { background:linear-gradient(135deg,#0a1628,#0d2044); height:60px; display:flex; align-items:center; padding:0 16px; gap:12px; }
    .clinic-logo-dot { width:20px;height:20px;border-radius:50%;background:linear-gradient(135deg,#4f8ef7,#38d9f5); }
    .clinic-logo-text { width:60px;height:8px;border-radius:4px;background:rgba(79,142,247,0.5); }
    .clinic-nav-links { display:flex;gap:10px;margin-left:auto; }
    .clinic-nav-link { width:30px;height:6px;border-radius:3px;background:rgba(255,255,255,0.15); }
    .clinic-content { padding:16px; }
    .clinic-headline { width:75%;height:10px;background:rgba(255,255,255,0.7);border-radius:5px;margin-bottom:8px; }
    .clinic-sub { width:55%;height:7px;background:rgba(255,255,255,0.2);border-radius:4px;margin-bottom:14px; }
    .clinic-btn { width:70px;height:22px;border-radius:100px;background:linear-gradient(135deg,#4f8ef7,#9b6bff);margin-bottom:14px; }
    .clinic-cards { display:flex;gap:8px; }
    .clinic-card { flex:1;height:50px;border-radius:8px;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.07); }

    /* Restaurant mockup */
    .resto-hero { height:80px;background:linear-gradient(135deg,#1a0a00,#2d1400);position:relative;overflow:hidden; }
    .resto-hero-img { position:absolute;inset:0;background:radial-gradient(circle at 60% 50%,rgba(255,120,0,0.3),transparent 70%); }
    .resto-hero-text { padding:12px 16px; }
    .resto-logo { width:50px;height:9px;background:rgba(255,165,0,0.6);border-radius:4px;margin-bottom:6px; }
    .resto-tagline { width:80px;height:6px;background:rgba(255,255,255,0.2);border-radius:3px; }
    .resto-menu { padding:12px 16px; }
    .resto-menu-title { width:40px;height:7px;background:rgba(255,165,0,0.4);border-radius:3px;margin-bottom:10px; }
    .resto-items { display:flex;flex-direction:column;gap:6px; }
    .resto-item { display:flex;align-items:center;gap:8px; }
    .resto-item-img { width:30px;height:22px;border-radius:4px;background:rgba(255,120,0,0.2);flex-shrink:0; }
    .resto-item-text { flex:1; }
    .resto-item-name { width:60%;height:6px;background:rgba(255,255,255,0.4);border-radius:3px;margin-bottom:4px; }
    .resto-item-price { width:30%;height:5px;background:rgba(255,165,0,0.3);border-radius:3px; }

    /* Coaching mockup */
    .coach-hero { height:80px;background:linear-gradient(135deg,#0a0a0a,#1a1a1a);padding:16px; }
    .coach-headline { width:80%;height:10px;background:linear-gradient(90deg,#9b6bff,#38d9f5);border-radius:5px;margin-bottom:8px; }
    .coach-sub { width:55%;height:6px;background:rgba(255,255,255,0.2);border-radius:3px;margin-bottom:10px; }
    .coach-cta { width:80px;height:20px;border-radius:100px;background:linear-gradient(135deg,#9b6bff,#38d9f5); }
    .coach-content { padding:12px 16px; }
    .coach-cards { display:grid;grid-template-columns:1fr 1fr;gap:6px; }
    .coach-card { height:40px;border-radius:6px;background:rgba(155,107,255,0.08);border:1px solid rgba(155,107,255,0.15);padding:8px; }
    .coach-card-line1 { width:60%;height:5px;background:rgba(155,107,255,0.4);border-radius:2px;margin-bottom:4px; }
    .coach-card-line2 { width:40%;height:4px;background:rgba(255,255,255,0.1);border-radius:2px; }

    /* Card overlay on hover */
    .portfolio-card::after {
      content: 'View Demo →';
      position: absolute;
      inset: 0;
      background: rgba(8,8,16,0.72);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: var(--fs-lg);
      color: #fff;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .portfolio-card:hover::after { opacity: 1; }

    .portfolio-info { padding: 24px 28px; border-top: 1px solid var(--border); }
    .portfolio-tag { display:inline-block; font-size:var(--fs-xs); font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--blue); margin-bottom:8px; }
    .portfolio-name { font-family:'Syne',sans-serif; font-size:var(--fs-lg); font-weight:700; margin-bottom:6px; }
    .portfolio-desc { font-size:var(--fs-sm); color:var(--muted); }

    /* ── Why Choose Us ─────────────────────────────────────── */
    #why { background: var(--bg2); position: relative; overflow: hidden; }

    .why-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
    .why-left .section-sub { margin-bottom: 40px; }
    .why-check { display: flex; flex-direction: column; gap: 16px; }
    .why-check-item { display:flex; align-items:center; gap:14px; font-size:var(--fs-base); font-weight:500; }
    .check-icon { width:28px;height:28px;border-radius:50%;background:var(--grad);display:flex;align-items:center;justify-content:center;font-size:0.75rem;flex-shrink:0;box-shadow:0 0 18px var(--glow-blue); }

    .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    .why-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .why-card:hover { transform: translateY(-6px); border-color: rgba(79,142,247,0.28); box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 28px var(--glow-blue); }
    .why-card-icon { font-size:2rem; margin-bottom:16px; display:block; }
    .why-card-title { font-family:'Syne',sans-serif; font-size:var(--fs-lg); font-weight:700; margin-bottom:10px; }
    .why-card-desc { font-size:var(--fs-sm); color:var(--muted); line-height:1.7; }

    /* ── Contact ───────────────────────────────────────────── */
    #contact { position: relative; overflow: hidden; }

    .contact-wrapper {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 32px;
      padding: 80px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .contact-wrapper::before {
      content: '';
      position: absolute;
      top: -220px; left: 50%;
      transform: translateX(-50%);
      width: 750px; height: 450px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(79,142,247,0.14), rgba(155,107,255,0.09), transparent 70%);
      pointer-events: none;
    }

    .contact-cta-label {
      font-family: 'Syne', sans-serif;
      font-size: var(--fs-sm);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 16px;
      position: relative; z-index: 1;
    }

    .contact-title { font-size:clamp(var(--fs-2xl),4vw,3.5rem); font-weight:800; margin-bottom:20px; line-height:1.1; position:relative; z-index:1; }
    .contact-sub { font-size:var(--fs-lg); color:var(--muted); margin-bottom:48px; max-width:500px; margin-left:auto; margin-right:auto; line-height:1.7; position:relative; z-index:1; }

    .contact-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; position:relative; z-index:1; }

    .contact-urgency {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: var(--fs-xs);
      font-weight: 600;
      color: var(--purple);
      letter-spacing: 0.06em;
      margin-bottom: 40px;
      position: relative; z-index: 1;
    }
    .urgency-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--purple);
      animation: pulseAnim 1.8s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes pulseAnim {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.7); }
    }

    .contact-info { display:flex; justify-content:center; gap:40px; position:relative; z-index:1; }
    .contact-info-item { display:flex; align-items:center; gap:10px; font-size:var(--fs-sm); color:var(--muted); }
    .contact-info-item a { color:var(--muted); text-decoration:none; transition:color 0.2s; }
    .contact-info-item a:hover { color:var(--text); }

    /* ── Footer ────────────────────────────────────────────── */
    footer { background:var(--bg); border-top:1px solid var(--border); padding:48px 0; }
    .footer-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
    .footer-copy { font-size:var(--fs-sm); color:var(--muted); }
    .footer-links { display:flex; gap:28px; list-style:none; }
    .footer-links a { font-size:var(--fs-sm); color:var(--muted); text-decoration:none; transition:color 0.2s; }
    .footer-links a:hover { color:var(--text); }

    /* ── Animations ────────────────────────────────────────── */
    @keyframes float {
      0%,100% { transform: translate(-50%,-50%) translateY(0px); }
      50%      { transform: translate(-50%,-50%) translateY(-18px); }
    }
    @keyframes floatFree {
      0%,100% { transform: translateY(0px); }
      50%      { transform: translateY(-14px); }
    }
    @keyframes ringRotate {
      from { transform: translate(-50%,-50%) rotateX(70deg) rotateZ(0deg); }
      to   { transform: translate(-50%,-50%) rotateX(70deg) rotateZ(360deg); }
    }

    /* Scroll reveal */
    .reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
    .reveal.visible { opacity:1; transform:none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── Responsive ────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { height: 340px; }
      .orb-scene { width: 300px; height: 300px; }
      .orb-main { width: 160px; height: 160px; }
      .orb-ring-1 { width: 220px; height: 220px; }
      .orb-ring-2 { width: 270px; height: 270px; }
      .orb-card-a { top: 0; right: 0; }
      .orb-card-b { bottom: 0; left: 0; }
      .services-header { grid-template-columns: 1fr; gap: 24px; }
      .services-grid { grid-template-columns: 1fr; gap: 20px; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .contact-wrapper { padding: 48px 32px; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .section { padding: 80px 0; }
    }

    @media (max-width: 600px) {
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .hero-trust { font-size: 0.7rem; padding: 7px 14px; }
      .contact-btns { flex-direction: column; align-items: center; }
      .contact-info { flex-direction: column; align-items: center; gap: 16px; }
      .why-features { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }

    /* ── Custom scrollbar ──────────────────────────────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: rgba(79,142,247,0.3); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(79,142,247,0.5); }

    /* ── Cursor dot ────────────────────────────────────────── */
    .cursor-dot { position:fixed; width:8px; height:8px; background:var(--blue); border-radius:50%; pointer-events:none; z-index:10000; transition:transform 0.15s, opacity 0.3s; box-shadow:0 0 12px var(--glow-blue); mix-blend-mode:screen; }
    .cursor-ring { position:fixed; width:36px; height:36px; border:1px solid rgba(79,142,247,0.5); border-radius:50%; pointer-events:none; z-index:9999; transition:transform 0.08s linear, width 0.3s, height 0.3s, opacity 0.3s; }
    @media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }
    
    /* Image Preview */
    .real-preview {
      height: 220px;
      overflow: hidden;
      position: relative;
      background: #111122;
    }

    .real-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
      transition: transform 0.45s var(--ease);
    }

    .portfolio-card:hover .real-preview img {
      transform: scale(1.04);
    }
  
    .real-preview::after {
      content: "Live Preview";
      position: absolute;
      bottom: 12px;
      right: 12px;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(8,8,16,0.7);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      backdrop-filter: blur(8px);
    }

    /* ── Pricing Premium ───────────────────────────────────── */
    #pricing {
      background: radial-gradient(circle at top, rgba(79,142,247,0.08), transparent 45%), var(--bg2);
      position: relative;
      overflow: hidden;
    }

    #pricing::before,
    #pricing::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
    }

    #pricing::before {
      width: 340px;
      height: 340px;
      background: rgba(79,142,247,0.12);
      top: 10%;
      left: 8%;
    }

    #pricing::after {
      width: 320px;
      height: 320px;
      background: rgba(155,107,255,0.12);
      bottom: 5%;
      right: 8%;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 72px;
      position: relative;
      z-index: 1;
    }

    .pricing-header .section-sub {
      margin: 0 auto;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .pricing-card {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 28px;
      padding: 36px 30px;
      backdrop-filter: blur(20px);
      overflow: hidden;
      transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(79,142,247,0.14), transparent 45%);
      opacity: 0.8;
      pointer-events: none;
    }

    .pricing-card::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(79,142,247,0.35), rgba(155,107,255,0.22), rgba(56,217,245,0.2));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      opacity: 0.55;
      pointer-events: none;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      border-color: rgba(79,142,247,0.28);
      box-shadow: 0 24px 70px rgba(0,0,0,0.42), 0 0 40px rgba(79,142,247,0.16);
    }

    .pricing-card.featured {
      transform: scale(1.06);
      border-color: rgba(79,142,247,0.35);
      box-shadow:
        0 30px 90px rgba(0,0,0,0.48),
        0 0 60px rgba(79,142,247,0.18),
        0 0 100px rgba(155,107,255,0.12);
      animation: featuredFloat 4.2s ease-in-out infinite;
    }

    .pricing-card.featured::before {
      background:
        radial-gradient(circle at top left, rgba(79,142,247,0.22), transparent 42%),
        radial-gradient(circle at bottom right, rgba(155,107,255,0.16), transparent 40%);
    }

    .pricing-card.featured::after {
      opacity: 0.9;
      background: linear-gradient(135deg, rgba(79,142,247,0.8), rgba(155,107,255,0.75), rgba(56,217,245,0.65));
    }

    @keyframes featuredFloat {
      0%, 100% { transform: scale(1.05) translateY(0); }
      50% { transform: scale(1.05) translateY(-8px); }
    }

    .pricing-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(79,142,247,0.12);
      border: 1px solid rgba(79,142,247,0.22);
      color: #9fc1ff;
      backdrop-filter: blur(8px);
      z-index: 2;
    }

    .pricing-plan,
    .pricing-price,
    .pricing-note,
    .pricing-list,
    .pricing-footer,
    .pricing-card .btn {
      position: relative;
      z-index: 1;
    }

    .pricing-plan {
      font-family: 'Syne', sans-serif;
      font-size: 1.45rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .pricing-price {
      font-family: 'Syne', sans-serif;
      font-size: 2.9rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 10px;
      letter-spacing: -0.04em;
    }

    .pricing-card.featured .pricing-price {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pricing-note {
      font-size: var(--fs-sm);
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .pricing-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 30px;
    }

    .pricing-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: var(--fs-sm);
      line-height: 1.65;
    }

    .pricing-list li::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--grad);
      margin-top: 8px;
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(79,142,247,0.35);
    }

    .pricing-card .btn {
      width: 100%;
      justify-content: center;
    }

    .pricing-footer {
      font-size: var(--fs-xs);
      color: var(--muted);
      margin-top: 14px;
      line-height: 1.7;
    }

    .pricing-extra {
      margin-top: 52px;
      text-align: center;
      color: var(--muted);
      font-size: var(--fs-sm);
      line-height: 1.85;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 900px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .pricing-card.featured {
        transform: none;
        animation: none;
      }

      .pricing-card.featured:hover {
        transform: translateY(-8px);
      }
    }

    /* ── Portfolio Premium Look ───────────────────────────── */
#portfolio {
  position: relative;
  background: radial-gradient(circle at top, rgba(79,142,247,0.06), transparent 40%), var(--bg);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 72px;
}

.portfolio-header .section-sub {
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.portfolio-card {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.35s;
  position: relative;
  backdrop-filter: blur(18px);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79,142,247,0.12), transparent 40%);
  pointer-events: none;
  opacity: 0.9;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79,142,247,0.22);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.45),
    0 0 44px rgba(79,142,247,0.12),
    0 0 80px rgba(155,107,255,0.08);
}

.portfolio-preview {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.real-preview {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: #111122;
}

.real-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.portfolio-card:hover .real-preview img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.real-preview::after {
  content: "Live Preview";
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8,8,16,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.portfolio-card:not(a .portfolio-card)::after,
.portfolio-card::after {
  content: 'View Demo →';
  position: absolute;
  inset: 0;
  background: rgba(8,8,16,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: var(--fs-lg);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

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

.portfolio-info {
  padding: 28px 30px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.portfolio-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.portfolio-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.portfolio-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.8;
  max-width: 90%;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-preview,
  .real-preview {
    height: 220px;
  }

  .portfolio-name {
    font-size: 1.45rem;
  }
}
.real-preview.preview-label-demo::after {
  content: "Demo Preview";
}

/* ── Package Demo Section ───────────────────────────── */
#package-demos {
  background: radial-gradient(circle at top, rgba(79,142,247,0.05), transparent 40%), var(--bg2);
  position: relative;
}

.package-header {
  text-align: center;
  margin-bottom: 72px;
}

.package-header .section-sub {
  margin: 0 auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  backdrop-filter: blur(18px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79,142,247,0.25);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.42),
    0 0 40px rgba(79,142,247,0.12);
}

.package-card.featured {
  border-color: rgba(79,142,247,0.3);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.45),
    0 0 50px rgba(79,142,247,0.14),
    0 0 90px rgba(155,107,255,0.08);
}

.package-card.coming-soon {
  opacity: 0.88;
}

.package-preview {
  height: 230px;
  overflow: hidden;
  position: relative;
  background: #111122;
}

.package-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.45s var(--ease);
}

.package-card:hover .package-preview img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8,8,16,0.75);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.package-content {
  padding: 28px 28px 30px;
}

.package-plan {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--blue);
}

.package-card.featured .package-plan {
  color: var(--purple);
}

.package-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.package-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.65;
}

.package-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  margin-top: 8px;
  flex-shrink: 0;
}

.package-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Premium button hover upgrade ───────────────────────── */
.pricing-card .btn,
.package-card .btn {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    filter 0.28s var(--ease);
}

.pricing-card .btn::before,
.package-card .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.08) 25%,
    rgba(255,255,255,0.18) 45%,
    rgba(255,255,255,0.08) 60%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.pricing-card .btn:hover::before,
.package-card .btn:hover::before {
  transform: translateX(120%);
}

.pricing-card .btn:hover,
.package-card .btn:hover {
  transform: translateY(-4px) scale(1.01);
}

.pricing-card .btn-ghost:hover,
.package-card .btn-ghost:hover {
  border-color: rgba(79,142,247,0.45);
  background: rgba(255,255,255,0.07);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.28),
    0 0 28px rgba(79,142,247,0.18);
}

.pricing-card .btn-primary:hover,
.package-card .btn-primary:hover {
  box-shadow:
    0 14px 34px rgba(0,0,0,0.3),
    0 0 36px rgba(79,142,247,0.28),
    0 0 56px rgba(155,107,255,0.18);
  filter: brightness(1.06);
}

.pricing-card .btn:active,
.package-card .btn:active {
  transform: translateY(-1px) scale(0.99);
}

/* subtle pulse for featured card primary button */
.pricing-card.featured .btn-primary {
  animation: featuredBtnPulse 2.8s ease-in-out infinite;
}

@keyframes featuredBtnPulse {
  0%, 100% {
    box-shadow:
      0 0 0 rgba(79,142,247,0),
      0 0 0 rgba(155,107,255,0);
  }
  50% {
    box-shadow:
      0 0 24px rgba(79,142,247,0.20),
      0 0 42px rgba(155,107,255,0.14);
  }
}

/* ── Light Theme + Theme Toggle ───────────────────────────── */
body.light-theme {
  --bg: #f7f8ff;
  --bg2: #eef2ff;
  --bg3: #ffffff;
  --surface: rgba(255,255,255,0.72);
  --border: rgba(14,18,32,0.10);
  --text: #101426;
  --muted: rgba(16,20,38,0.62);
  --glow-blue: rgba(79,142,247,0.18);
  --glow-pur: rgba(155,107,255,0.16);
}
body.light-theme nav.scrolled { background: rgba(247,248,255,0.88); }
body.light-theme .mobile-menu { background: rgba(247,248,255,0.96); }
body.light-theme .mockup-browser,
body.light-theme .real-preview,
body.light-theme .package-preview { background: #e8ecff; }
body.light-theme .footer-links a,
body.light-theme .contact-info-item a { color: var(--muted); }

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.theme-toggle:hover { transform: translateY(-2px); border-color: rgba(79,142,247,0.35); box-shadow: 0 0 22px var(--glow-blue); }

/* ── Work Section Upgrade ─────────────────────────────────── */
.portfolio-link { text-decoration: none; color: inherit; display: block; }
.work-group { margin-bottom: 58px; }
.work-group:last-child { margin-bottom: 0; }
.work-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.work-group-head p { color: var(--muted); font-size: var(--fs-sm); }
.work-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(37,211,102,0.10);
  border: 1px solid rgba(37,211,102,0.20);
  color: #5ee58f;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.demo-pill { background: rgba(79,142,247,0.10); border-color: rgba(79,142,247,0.22); color: #9fc1ff; }
.live-grid { grid-template-columns: repeat(2, 1fr); }
.demo-grid { grid-template-columns: repeat(3, 1fr); }
.real-preview.preview-label-live::after { content: "Live Project"; }
.real-preview.preview-label-demo::after { content: "Demo Project"; }
.fallback-preview::before {
  content: "ORBYX";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.22);
  background:
    radial-gradient(circle at 30% 30%, rgba(79,142,247,0.22), transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(155,107,255,0.22), transparent 35%),
    var(--bg3);
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  text-align: left;
  align-items: center;
}
.contact-copy, .contact-form { position: relative; z-index: 1; }
.contact-copy .contact-sub { margin-left: 0; margin-right: 0; margin-bottom: 30px; }
.contact-info-left { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
.contact-form {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(18px);
}
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-row label { font-size: var(--fs-xs); font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.10em; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.055);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: rgba(79,142,247,0.5); box-shadow: 0 0 0 4px rgba(79,142,247,0.10); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.contact-form .btn-ghost { margin-top: 12px; }

/* ── Mobile Bottom Nav ────────────────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1200;
  padding: 8px;
  border: 1px solid var(--border);
  background: rgba(8,8,16,0.86);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
body.light-theme .mobile-bottom-nav { background: rgba(255,255,255,0.88); }
.mobile-bottom-nav a, .mobile-bottom-nav button {
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  border-radius: 16px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.mobile-bottom-nav span { font-size: 1rem; line-height: 1; }
.mobile-bottom-nav a:hover, .mobile-bottom-nav button:hover { color: var(--text); background: rgba(79,142,247,0.10); }

@media (max-width: 900px) {
  body { padding-bottom: 84px; }
  nav { padding: 14px 0; }
  nav.scrolled { padding: 12px 0; }
  .mobile-bottom-nav { display: grid; }
  .theme-toggle { display: none; }
  .live-grid, .demo-grid { grid-template-columns: 1fr; }
  .work-group-head { align-items: flex-start; flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; padding: 44px 24px; }
  .contact-title { text-align: left; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  #hero { padding-top: 105px; }
  .hero-title { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .hero-sub { font-size: 1rem; }
  .hero-trust { flex-wrap: wrap; border-radius: 18px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
  .stat-num { font-size: 1rem; }
  .stat-label { font-size: 0.68rem; }
  .pricing-card { padding: 30px 24px; }
  .pricing-price { font-size: 2.35rem; }
  .portfolio-desc { max-width: 100%; }
  footer { padding-bottom: 110px; }
}


#portfolio {
  background:
    radial-gradient(circle at 20% 10%, rgba(79,142,247,0.08), transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(155,107,255,0.08), transparent 35%),
    var(--bg);
  position: relative;
}

.work-block {
  margin-bottom: 110px;
}

.work-block:last-child {
  margin-bottom: 0;
}

.work-block .section-title {
  max-width: 850px;
  margin-bottom: 42px;
}

.work-grid {
  display: grid;
  gap: 28px;
}

.live-grid {
  grid-template-columns: repeat(2, 1fr);
}

.demo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.work-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 32px;
  min-height: 210px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79,142,247,0.35);
  box-shadow:
    0 28px 75px rgba(0,0,0,0.34),
    0 0 36px rgba(79,142,247,0.14);
}

.work-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.work-badge.live {
  background: #57e978;
  color: #05140a;
}

.work-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.work-type {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 18px;
}

.work-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.work-link {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 1000px) {
  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .live-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .work-block {
    margin-bottom: 80px;
  }

  .work-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
}

.niche-marquee {
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, var(--bg), transparent 12%, transparent 88%, var(--bg)),
    rgba(255,255,255,0.025);
}

.niche-track {
  display: flex;
  width: max-content;
  animation: nicheScroll 40s linear infinite;
}

.niche-row {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  white-space: nowrap;
}

.niche-row span {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0.78;
}

.niche-row b {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.9;
}

.niche-marquee:hover .niche-track {
  animation-play-state: paused;
}

@keyframes nicheScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .niche-marquee {
    padding: 22px 0;
  }

  .niche-row {
    gap: 28px;
    padding-right: 28px;
  }

  .niche-row span {
    font-size: 1.45rem;
  }

  .niche-row b {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-title {
     font-size: clamp(2.3rem, 12vw, 3rem);
    line-height: 1.08;
    white-space: normal;
  }

  .hero-sub {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-trust {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-ctas .btn {
    max-width: 100%;
  }
}

.service-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;

  width: fit-content;
  margin: 70px auto 0;

  padding-top: 40px;
  border-top: 1px solid var(--border);

  text-align: center;
}

.service-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-stats .stat-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.service-stats .stat-num {
  font-size: 1.3rem;
  font-weight: 700;
}

.service-stats .stat-label {
  font-size: 0.75rem;
  color: var(--muted);
}
@media (max-width: 600px) {
  .service-stats {
    gap: 28px;
    max-width: 100%;
    padding-top: 28px;
  }

  .service-stats .stat-icon {
    font-size: 1.3rem;
  }

  .service-stats .stat-num {
    font-size: 1.05rem;
  }

  .service-stats .stat-label {
    font-size: 0.7rem;
  }
}

.footer {
  background:
    radial-gradient(circle at top left, rgba(79,142,247,0.10), transparent 36%),
    radial-gradient(circle at bottom right, rgba(155,107,255,0.08), transparent 34%),
    var(--bg);
  border-top: 1px solid var(--border);
  padding: 78px 0 34px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 0.8fr;
  gap: 42px;
  margin-bottom: 54px;
}

.footer-brand p {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.8;
  max-width: 360px;
  margin: 22px 0;
}

.footer-cta {
  display: inline-flex;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--text);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: var(--fs-sm);
}

.footer-bottom div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}



@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .footer-bottom {
    display: flex;
    flex-direction: column-reverse; /* 👈 main trick */
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom div {
    justify-content: center;
  }

  .footer-bottom p {
    margin-top: 6px;
  }
}

.mobile-theme-toggle {
  display: none;
}

@media (max-width: 900px) {
  .nav-inner {
    gap: 12px;
  }

  .mobile-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(14px);
  }

  .hamburger {
    margin-left: 0;
  }

  .mobile-bottom-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    padding: 100px 24px 120px;
    gap: 28px;
  }

  .mobile-menu a {
    font-size: 1.75rem;
  }

  .mobile-menu .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 1.15rem;
    padding: 16px 24px;
    text-align: center;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 0 25px rgba(37,211,102,0.5);
  text-decoration: none;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.testi-card span {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}