﻿:root {
      --bg: #07111f;
      --bg-2: #0d1b2f;
      --ink: #0f172a;
      --muted: #64748b;
      --line: rgba(148, 163, 184, 0.22);
      --white: #ffffff;
      --soft: #f7f9fc;
      --cyan: #28d8ff;
      --violet: #7c3cff;
      --pink: #ff4fd8;
      --gold: #ffd166;
      --green: #24d18f;
      --radius: 28px;
      --shadow: 0 28px 90px rgba(2, 8, 23, 0.18);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--soft);
      color: var(--ink);
      line-height: 1.55;
      letter-spacing: 0.01em;
    }

    h1, h2, h3, h4, h5, h6 {
      letter-spacing: -0.01em;
      line-height: 1.2;
    }

    a { color: inherit; text-decoration: none; }
    .page { overflow: hidden; }
    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

    .hero-shell {
      background:
        radial-gradient(circle at 12% 10%, rgba(40, 216, 255, 0.28), transparent 30%),
        radial-gradient(circle at 84% 10%, rgba(255, 79, 216, 0.22), transparent 34%),
        linear-gradient(135deg, #06101f 0%, #0b1730 50%, #10102c 100%);
      color: var(--white);
      min-height: 860px;
      position: relative;
      isolation: isolate;
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      inset: auto -10% -190px -10%;
      height: 340px;
      background: var(--soft);
      border-radius: 50% 50% 0 0;
      z-index: -1;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0;
      font-size: 22px;
    }

    .brand img {
      display: block;
      height: 56px;
      width: auto;
      max-width: min(360px, 70vw);
      object-fit: contain;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--cyan), var(--violet), var(--pink));
      display: grid;
      place-items: center;
      font-weight: 900;
      box-shadow: 0 14px 34px rgba(124, 60, 255, 0.38);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 15px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--cyan), var(--violet) 52%, var(--pink));
      color: white;
      box-shadow: 0 16px 34px rgba(124, 60, 255, 0.36);
    }
    .btn-secondary {
      color: white;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      backdrop-filter: blur(14px);
    }
    .btn-dark {
      color: white;
      background: #0f172a;
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
    }
    .btn-light {
      color: #0f172a;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
    }

    .hero {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      align-items: center;
      gap: 44px;
      padding: 52px 0 116px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(12px);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 22px;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 0 6px rgba(36, 209, 143, 0.12);
    }

    h1 {
      font-size: clamp(54px, 7vw, 86px);
      line-height: 1.12;
      margin: 0 0 24px;
      letter-spacing: -0.01em;
      max-width: 720px;
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 10%, #a5f3fc 36%, #c4b5fd 65%, #f9a8d4 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      font-size: 19px;
      color: rgba(255, 255, 255, 0.75);
      max-width: 610px;
      margin: 0 0 30px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 30px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.78);
      font-size: 14px;
      font-weight: 650;
    }

    .mockup-wrap {
      position: relative;
      min-height: 600px;
    }

    .glass-orb {
      position: absolute;
      inset: 26px auto auto 34px;
      width: 250px;
      height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(40, 216, 255, 0.54), rgba(124, 60, 255, 0.1) 68%, transparent);
      filter: blur(6px);
    }

    .dashboard {
      position: absolute;
      right: 0;
      top: 20px;
      width: min(520px, 100%);
      border-radius: 34px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 42px 110px rgba(0, 0, 0, 0.36);
      backdrop-filter: blur(28px);
    }

    .dash-top {
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
    }

    .traffic { display: flex; gap: 8px; }
    .traffic span { width: 11px; height: 11px; border-radius: 999px; background: rgba(255, 255, 255, 0.4); }
    .dash-title { font-size: 13px; color: rgba(255, 255, 255, 0.7); font-weight: 700; }

    .dash-body { padding: 22px; }

    .request-card {
      background: rgba(255, 255, 255, 0.92);
      color: var(--ink);
      border-radius: 24px;
      padding: 20px;
      margin-bottom: 18px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    }

    .request-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
    .request-head h3 { margin: 0; letter-spacing: -0.01em; font-size: 21px; line-height: 1.25; }
    .status { padding: 7px 10px; border-radius: 999px; background: rgba(36, 209, 143, 0.12); color: #027a48; font-weight: 800; font-size: 12px; }
    .field { padding: 13px 15px; border-radius: 15px; background: #f1f5f9; color: #64748b; font-size: 13px; margin-top: 10px; }

    .canva-board {
      height: 274px;
      border-radius: 24px;
      overflow: hidden;
      background: #ffffff;
      color: var(--ink);
      display: grid;
      grid-template-columns: 78px 1fr 112px;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    }

    .toolbar {
      background: #f8fafc;
      border-right: 1px solid #e2e8f0;
      padding: 16px 13px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .tool { height: 38px; border-radius: 12px; background: linear-gradient(135deg, #e0f2fe, #ede9fe); }
    .canvas-area {
      padding: 18px;
      background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px);
      background-size: 22px 22px;
      display: grid;
      place-items: center;
    }
    .social-preview {
      width: 176px;
      height: 216px;
      border-radius: 22px;
      padding: 15px;
      color: #ffffff;
      background: linear-gradient(150deg, #07111f 0%, #4f46e5 56%, #ec4899 100%);
      box-shadow: 0 16px 34px rgba(79, 70, 229, 0.3);
      position: relative;
      overflow: hidden;
    }
    .social-preview::before {
      content: "";
      position: absolute;
      width: 130px;
      height: 130px;
      border-radius: 38px;
      right: -44px;
      bottom: -40px;
      background: rgba(255, 255, 255, 0.16);
      transform: rotate(22deg);
    }
    .mini-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.75; font-weight: 800; }
    .social-preview h4 { font-size: 26px; line-height: 1.15; margin: 36px 0 12px; letter-spacing: -0.01em; position: relative; }
    .social-preview p { font-size: 10px; line-height: 1.35; margin: 0; color: rgba(255, 255, 255, 0.78); position: relative; }
    .layers { border-left: 1px solid #e2e8f0; padding: 16px 12px; background: #ffffff; }
    .layer { height: 18px; border-radius: 8px; background: #e2e8f0; margin-bottom: 12px; }
    .layer:nth-child(2) { width: 70%; background: #c4b5fd; }
    .layer:nth-child(3) { width: 86%; background: #a5f3fc; }
    .layer:nth-child(4) { width: 62%; background: #f9a8d4; }

    .float-card {
      position: absolute;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--ink);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
      border: 1px solid rgba(255, 255, 255, 0.66);
      backdrop-filter: blur(16px);
      z-index: 2;
    }
    .float-card.brand-kit { left: -18px; top: 360px; width: 220px; padding: 18px; }
    .float-card.delivery { right: 28px; bottom: 0; width: 228px; padding: 18px; }
    .float-card h4 { margin: 0 0 12px; font-size: 14px; letter-spacing: 0; }
    .swatches { display: flex; gap: 8px; margin-bottom: 12px; }
    .swatch { width: 33px; height: 33px; border-radius: 11px; }
    .swatch:nth-child(1) { background: var(--cyan); }
    .swatch:nth-child(2) { background: var(--violet); }
    .swatch:nth-child(3) { background: var(--pink); }
    .swatch:nth-child(4) { background: #0f172a; }
    .progress { height: 9px; border-radius: 999px; background: #e2e8f0; overflow: hidden; }
    .progress span { display: block; width: 78%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--violet)); }

    .stats {
      margin-top: -72px;
      position: relative;
      z-index: 5;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: var(--shadow);
      border-radius: 30px;
      padding: 18px;
    }

    .stat {
      padding: 26px 22px;
      border-radius: 22px;
      background: linear-gradient(180deg, #ffffff, #f8fafc);
      border: 1px solid rgba(15, 23, 42, 0.06);
    }
    .stat strong { display: block; font-size: 30px; letter-spacing: -0.01em; margin-bottom: 4px; }
    .stat span { color: var(--muted); font-size: 14px; font-weight: 650; }

    section { padding: 96px 0; }
    .section-head { max-width: 760px; margin-bottom: 44px; }
    .kicker { color: var(--violet); font-weight: 900; text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; margin-bottom: 12px; }
    h2 { font-size: clamp(38px, 4.8vw, 64px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 18px; }
    .section-head p { color: var(--muted); font-size: 18px; margin: 0; }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .why-card {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 30px;
      padding: 34px;
      min-height: 270px;
      box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
      position: relative;
      overflow: hidden;
    }
    .why-card::after {
      content: "";
      position: absolute;
      right: -50px;
      top: -50px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(40, 216, 255, 0.14), rgba(255, 79, 216, 0.14));
    }
    .icon-box {
      width: 54px;
      height: 54px;
      border-radius: 17px;
      background: linear-gradient(135deg, rgba(40, 216, 255, 0.16), rgba(124, 60, 255, 0.16));
      display: grid;
      place-items: center;
      font-size: 24px;
      margin-bottom: 26px;
    }
    .why-card h3 { font-size: 25px; line-height: 1.25; letter-spacing: -0.01em; margin: 0 0 12px; max-width: 360px; }
    .why-card p { color: var(--muted); margin: 0; max-width: 470px; }

    .services { background: #ffffff; }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .service-card {
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 24px;
      padding: 24px;
      min-height: 170px;
      background: linear-gradient(180deg, #ffffff, #f8fafc);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    a.service-card {
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    a.service-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
      border-color: rgba(109, 40, 217, 0.2);
    }
    .service-card span { font-size: 13px; font-weight: 900; color: var(--violet); }
    .service-card h3 { font-size: 21px; letter-spacing: -0.01em; line-height: 1.25; margin: 22px 0 0; }

    .service-link-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .service-link-card {
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 24px;
      padding: 24px;
      min-height: 210px;
      background: linear-gradient(180deg, #ffffff, #f8fafc);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .service-link-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
      border-color: rgba(124, 60, 255, 0.28);
    }
    .service-link-card__num {
      font-size: 13px;
      font-weight: 900;
      color: var(--violet);
      line-height: 1;
    }
    .service-link-card__body { flex: 1; }
    .service-link-card h3 {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.01em;
      line-height: 1.3;
      margin: 16px 0 8px;
      color: var(--ink);
    }
    .service-link-card p {
      font-size: 14px;
      line-height: 1.55;
      color: var(--muted);
      margin: 0;
    }
    .service-link-card__cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      font-size: 13px;
      font-weight: 700;
      color: var(--violet);
    }
    .service-link-card__cta svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s ease;
    }
    .service-link-card:hover .service-link-card__cta svg {
      transform: translateX(3px);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 1fr;
      grid-auto-rows: 210px;
      gap: 18px;
    }
    .work-card {
      border-radius: 30px;
      overflow: hidden;
      position: relative;
      color: white;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
      background: linear-gradient(145deg, #0f172a, #4f46e5);
    }
    .work-card.tall { grid-row: span 2; }
    .work-card.wide { grid-column: span 2; }
    .work-card:nth-child(2) { background: linear-gradient(145deg, #0891b2, #7c3cff); }
    .work-card:nth-child(3) { background: linear-gradient(145deg, #111827, #ec4899); }
    .work-card:nth-child(4) { background: linear-gradient(145deg, #0f766e, #28d8ff); }
    .work-card:nth-child(5) { background: linear-gradient(145deg, #581c87, #ff4fd8); }
    .work-card::before {
      content: "";
      position: absolute;
      width: 210px;
      height: 210px;
      border-radius: 46px;
      background: rgba(255, 255, 255, 0.13);
      right: -62px;
      bottom: -74px;
      transform: rotate(22deg);
    }
    .work-tag { align-self: flex-start; border-radius: 999px; padding: 7px 11px; background: rgba(255, 255, 255, 0.18); font-size: 12px; font-weight: 800; backdrop-filter: blur(10px); }
    .work-card h3 { position: relative; font-size: 30px; line-height: 1.2; letter-spacing: -0.01em; margin: 0; max-width: 310px; }
    .work-card p { position: relative; color: rgba(255, 255, 255, 0.72); margin: 12px 0 0; max-width: 380px; }
    .work-card.has-image {
      padding: 0;
      background: #f4f6fb !important;
      color: #ffffff;
    }
    .work-card.has-image::before {
      display: none;
    }
    .work-card.has-image::after {
      display: none;
    }
    .work-card-media {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .work-card-media img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
      opacity: 0;
      transition: opacity 0.45s ease;
    }
    .work-card-media img.is-active {
      opacity: 1;
    }
    .work-card-dots {
      position: absolute;
      left: 50%;
      bottom: 92px;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 1;
      pointer-events: none;
    }
    .work-card-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.45);
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .work-card-dot.is-active {
      background: #ffffff;
      transform: scale(1.15);
    }
    .portfolio-grid .work-card-media img {
      object-fit: cover;
    }
    .work-card.has-image .work-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      margin: 0;
      color: #ffffff;
    }
    .work-card.has-image > div {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 14px 18px 18px;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.78) 42%, rgba(15, 23, 42, 0.94) 100%);
    }
    .work-card.has-image h3,
    .work-card.has-image p,
    .work-card.has-image .work-link {
      color: #ffffff;
    }
    a.work-card { cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
    a.work-card:hover { transform: translateY(-4px); box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22); }
    .work-link {
      display: inline-block;
      margin-top: 14px;
      font-size: 13px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.9);
    }
    .portfolio-cta { text-align: center; margin-top: 28px; }

    .portfolio-filter-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      margin: 0 auto 40px;
      padding: 8px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
      width: fit-content;
      max-width: 100%;
    }
    .portfolio-filter-btn {
      border: 0;
      background: transparent;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      color: var(--muted);
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
      font-family: inherit;
    }
    .portfolio-filter-btn:hover,
    .portfolio-filter-btn.active {
      color: #ffffff;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      box-shadow: 0 10px 24px rgba(124, 60, 255, 0.24);
    }
    .portfolio-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 72px 24px;
      border-radius: 30px;
      background: linear-gradient(180deg, #ffffff, #f8fafc);
      border: 1px solid rgba(15, 23, 42, 0.08);
    }
    .portfolio-empty h3 { margin: 0 0 10px; font-size: 28px; letter-spacing: -0.01em; }
    .portfolio-empty p { margin: 0 auto 24px; max-width: 520px; color: var(--muted); }

    .workflow { background: #07111f; color: white; }
    .workflow .section-head p { color: rgba(255, 255, 255, 0.66); }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .step {
      border-radius: 28px;
      padding: 28px;
      min-height: 280px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .step-no {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--cyan), var(--violet));
      color: white;
      font-weight: 900;
      margin-bottom: 52px;
    }
    .step h3 { font-size: 24px; letter-spacing: -0.01em; margin: 0 0 10px; }
    .step p { color: rgba(255, 255, 255, 0.67); margin: 0; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }
    .price-card {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 32px;
      padding: 24px 20px;
      box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .price-card .btn {
      position: relative;
      z-index: 2;
      display: inline-flex;
      justify-content: center;
      width: 100%;
    }
    .price-card.featured {
      background: linear-gradient(180deg, #0f172a, #111c33);
      color: white;
      transform: none;
      box-shadow: 0 36px 90px rgba(15, 23, 42, 0.3);
    }
    .badge {
      position: absolute;
      top: 22px;
      right: 22px;
      background: linear-gradient(135deg, var(--cyan), var(--pink));
      color: white;
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 12px;
      font-weight: 900;
    }
    .price-card h3 { font-size: 1.2rem; line-height: 1.25; letter-spacing: -0.01em; margin: 0 0 8px; }
    .price-card .desc { color: var(--muted); min-height: 40px; font-size: 0.875rem; margin: 0 0 16px; }
    .price-card.featured .desc { color: rgba(255, 255, 255, 0.62); }
    .price { font-size: 2rem; letter-spacing: -0.01em; font-weight: 800; margin: 0 0 14px; }
    .price span { font-size: 15px; letter-spacing: 0; color: var(--muted); font-weight: 700; }
    .price-card.featured .price span { color: rgba(255, 255, 255, 0.58); }
    .features { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
    .features li { display: flex; gap: 10px; align-items: flex-start; color: #475569; font-weight: 600; font-size: 0.8125rem; line-height: 1.45; }
    .price-card.featured .features li { color: rgba(255, 255, 255, 0.74); }
    .features li::before,
    .feature-check::before {
      content: "\2713";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-top: 1px;
      border-radius: 50%;
      background: rgba(36, 209, 143, 0.14);
      color: var(--green);
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
    }
    .feature-check {
      display: inline-flex;
      flex-shrink: 0;
    }
    .price-card.featured .features li::before,
    .dg-price-card--featured .feature-check::before {
      background: rgba(255, 255, 255, 0.1);
      color: #4ade80;
    }

    .testimonials { background: #ffffff; }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .quote-card {
      background: #f8fafc;
      border: 1px solid rgba(15, 23, 42, 0.07);
      border-radius: 30px;
      padding: 30px;
    }
    .stars { color: #f59e0b; font-size: 18px; margin-bottom: 22px; letter-spacing: 0.05em; }
    .quote-card p { font-size: 17px; color: #334155; margin: 0 0 26px; }
    .person { display: flex; align-items: center; gap: 13px; }
    .avatar { width: 44px; height: 44px; border-radius: 16px; display: grid; place-items: center; color: white; font-weight: 900; background: linear-gradient(135deg, var(--violet), var(--pink)); }
    .person strong { display: block; font-size: 14px; }
    .person span { color: var(--muted); font-size: 13px; }

    .final-cta {
      padding: 0 0 100px;
      background: #ffffff;
    }
    .cta-box {
      border-radius: 40px;
      padding: 72px;
      color: white;
      background:
        radial-gradient(circle at 20% 20%, rgba(40, 216, 255, 0.3), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(255, 79, 216, 0.28), transparent 30%),
        linear-gradient(135deg, #07111f, #172554 58%, #3b0764);
      box-shadow: 0 36px 110px rgba(15, 23, 42, 0.25);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
    }
    .cta-box h2 { color: white; margin-bottom: 16px; max-width: 650px; }
    .cta-box p { color: rgba(255, 255, 255, 0.72); margin: 0; font-size: 18px; max-width: 650px; }
    .footer {
      padding: 48px 0 28px;
      background: #07111f;
      color: rgba(255, 255, 255, 0.62);
      font-size: 14px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 32px 24px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-heading {
      margin: 0 0 14px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.92);
    }
    .footer-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }
    .footer-list a {
      color: rgba(255, 255, 255, 0.62);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .footer-list a:hover { color: #fff; }
    .footer-muted { color: rgba(255, 255, 255, 0.38); }
    .footer-bottom {
      padding-top: 22px;
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
    }
    .footer-bottom p { margin: 0; }
    .footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
    .footer-links { display: flex; gap: 20px; }

    @media (max-width: 980px) {
      .nav-links,
      .nav-cta { display: none; }
      .mobile-toggle { display: inline-flex; }
      .mobile-panel.is-open { display: block; }
      .hero { grid-template-columns: 1fr; padding-top: 28px; padding-bottom: 72px; gap: 28px; }
      .mockup-wrap { min-height: 520px; overflow: hidden; }
      .stats-grid, .service-grid, .steps, .testimonial-grid { grid-template-columns: 1fr 1fr; }
      #pricing .pricing-grid,
      .pricing-page-section .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .why-grid { grid-template-columns: 1fr; }
      .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
      .work-card.wide,
      .work-card.tall { grid-column: auto; grid-row: auto; }
      .cta-box { grid-template-columns: 1fr; padding: 40px 28px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      h1 { font-size: clamp(40px, 9vw, 64px); }
      .work-card h3 { font-size: 24px; }
    }

    @media (max-width: 680px) {
      .container { width: min(100% - 28px, 1180px); }
      .hero-shell { min-height: auto; }
      .nav { padding: 18px 0; gap: 12px; }
      .brand { font-size: 17px; }
      .brand-mark { width: 40px; height: 40px; border-radius: 14px; }
      .hero-actions,
      .trust-row {
        align-items: stretch;
        flex-direction: column;
      }
      .hero-actions .btn,
      .cta-box .btn,
      .portfolio-cta .btn { width: 100%; }
      .mockup-wrap { min-height: 480px; margin-top: 8px; }
      .dashboard { width: 100%; right: 0; left: 0; }
      .float-card { width: min(220px, calc(100% - 24px)); }
      .float-card.brand-kit { left: 8px; top: auto; bottom: 88px; }
      .float-card.delivery { right: 8px; bottom: 8px; }
      .layers { display: none; }
      .stats-grid,
      .service-grid,
      .steps,
      #pricing .pricing-grid,
      .pricing-page-section .pricing-grid,
      .testimonial-grid { grid-template-columns: 1fr; }
      .price-card.featured { transform: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-links { gap: 12px 16px; }
      h1 { font-size: clamp(34px, 10vw, 44px); }
      .hero p { font-size: 16px; }
      section { padding: 64px 0; }
      .section-head h2 { font-size: clamp(28px, 8vw, 40px); }
      .portfolio-filter-bar {
        width: 100%;
        border-radius: 22px;
        justify-content: flex-start;
      }
      .page-hero-inner { padding: 64px 0 40px; }
      .page-hero-inner p { font-size: 16px; }
      .page-content-wrap { padding: 48px 0; }
    }

/* Inner pages */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background:
    radial-gradient(circle at 12% 10%, rgba(40, 216, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(255, 79, 216, 0.14), transparent 34%),
    linear-gradient(135deg, #06101f 0%, #0b1730 50%, #10102c 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.nav-bar .nav { padding: 18px 0; }
.nav-bar .brand { color: #ffffff; }
.nav-bar .nav-links { color: rgba(255, 255, 255, 0.78); }
.nav-bar .nav-links a:hover { color: #ffffff; }
.nav-bar .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.nav-bar .mobile-toggle { color: #ffffff; }
.nav-bar .mobile-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-bar .mobile-panel a {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-page-section {
  padding: 80px 0;
  background: #ffffff;
}

@media (max-width: 1100px) {
  #pricing .pricing-grid,
  .pricing-page-section .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .pricing-page-section {
    padding: 56px 0;
  }
  #pricing .pricing-grid,
  .pricing-page-section .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-faq-wrap {
  margin-top: 64px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-faq-wrap h3 {
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 32px;
  color: var(--ink);
}
.pricing-faq-list {
  display: grid;
  gap: 16px;
}
.pricing-faq-list .card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 20px 22px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
}
.pricing-faq-list .card h4 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--ink);
}
.pricing-faq-list .card p {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.page-hero-inner {
  padding: 88px 0 56px;
  color: white;
  background:
    radial-gradient(circle at 12% 10%, rgba(40, 216, 255, 0.28), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(255, 79, 216, 0.22), transparent 34%),
    linear-gradient(135deg, #06101f 0%, #0b1730 50%, #10102c 100%);
}
.page-hero-inner h1 { font-size: clamp(36px, 5vw, 56px); max-width: none; margin-bottom: 12px; }
.page-hero-inner p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 720px; margin: 0 auto; }
.page-hero-inner .kicker { color: var(--cyan); display: inline-flex; align-items: center; justify-content: center; }
.page-content-wrap { padding: 72px 0; }

@media (max-width: 980px) {
  .service-link-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .service-link-grid { grid-template-columns: 1fr; }
}
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
  border-radius: 12px;
}
.mobile-toggle--light { color: #ffffff; }
.mobile-panel {
  display: none;
  border-top: 1px solid rgba(15,23,42,0.08);
  padding: 12px 0 20px;
}
.mobile-panel a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 600;
}
.mobile-panel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.mobile-panel-actions .btn { width: 100%; }
.mobile-panel--hero {
  border-top-color: rgba(255,255,255,0.12);
}
.mobile-panel--hero a { color: rgba(255,255,255,0.82); }
.mobile-panel--hero .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}
@media (max-width: 980px) {
  .nav-bar .nav-links,
  .nav-bar .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-panel.is-open { display: block; }
}

/* Homepage promo popup */
.home-promo-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
}
.home-promo-popup[hidden] {
  display: none !important;
}
.home-promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 31, 0.72);
  backdrop-filter: blur(6px);
}
.home-promo-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  animation: homePromoIn 0.28s ease;
}
.home-promo-popup__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(2, 8, 23, 0.28);
}
.home-promo-popup__link {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(2, 8, 23, 0.45);
}
.home-promo-popup__image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@keyframes homePromoIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
body.home-promo-open {
  overflow: hidden;
}
@media (max-width: 680px) {
  .home-promo-popup {
    padding: 14px;
    align-items: end;
  }
  .home-promo-popup__close {
    top: 8px;
    right: 8px;
  }
  .home-promo-popup__link {
    border-radius: 18px;
  }
}

