  :root {
    --ink: #0a0d14;
    --ink2: #111520;
    --ink3: #181e2e;
    --steel: #1e2638;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --gold: #7a5109;
    --gold2: #e8cc9a;
    --gold-light: rgba(200,169,110,0.12);
    --gold-faint: rgba(200,169,110,0.05);
    --text: #d4dae8;
    --muted: #5e6880;
    --muted2: #8592aa;
    --white: #f0f4fc;
    --grad-gold: linear-gradient(135deg, #c8a96e, #e8cc9a, #c8a96e);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

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

  /* Grain overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
  }

  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 26px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
  }

  nav.scrolled {
    background: rgba(10,13,20,0.94);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 18px 72px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-left: 3px;
  }

  .logo-emblem {
    width: 42px; height: 42px;
    border: 1px solid rgba(200,169,110,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 1px;
    position: relative;
    transition: border-color 0.3s;
  }

  .logo-emblem::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(200,169,110,0.15);
  }

  .logo:hover .logo-emblem { border-color: var(--gold); }

  .logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
  }

  .logo-sub {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 300;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted2);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
  }

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

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

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
  }

  .btn-ghost {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--muted2);
  }

  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .btn-gold {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
  }

  .btn-gold:hover {
    background: var(--gold);
    color: var(--ink);
  }

  .btn-solid {
    background: var(--gold);
    color: var(--ink);
    font-weight: 600;
  }

  .btn-solid:hover {
    background: var(--gold2);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.25);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .hamburger span {
    width: 22px; height: 1.5px;
    background: var(--text);
    display: block;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 72px 100px;
  }

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/jdsbg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.3); /* darken the image so text stays readable */
  z-index: 0;
}

  .hero-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,169,110,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,110,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 80%);
  }

  .hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease both;
  }

  .eyebrow-line {
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  .eyebrow-text {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
  }

  .hero-status {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .status-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
    50% { opacity:0.7; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
  }

  .status-text {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: #4ade80;
    letter-spacing: 2px;
  }

  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 12px;
    animation: fadeUp 0.8s ease 0.1s both;
  }

  h1 em {
    font-style: italic;
    color: blue;
  }

  .hero-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
    opacity: 0.3;
    margin: 28px 0;
    animation: fadeUp 0.8s ease 0.2s both;
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    color: var(--muted2);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 48px;
    animation: fadeUp 0.8s ease 0.25s both;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .hero-actions .btn { padding: 14px 30px; font-size: 14px; }

  .hero-stats {
    display: flex;
    gap: 0;
    margin-top: 80px;
    animation: fadeUp 0.8s ease 0.4s both;
  }

  .stat-item {
    padding: 28px 48px 28px 0;
    border-right: 1px solid var(--border);
    margin-right: 48px;
  }

  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-number em { color: var(--gold); font-style: normal; font-size: 28px; }
  .stat-label { font-size: 12px; color: var(--muted); font-weight: 400; letter-spacing: 0.5px; }

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

  /* ── CLIENTS ── */
  .clients {
    padding: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    background: var(--ink2);
  }

  .clients::before, .clients::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 200px;
    z-index: 2;
  }

  .clients::before { left: 0; background: linear-gradient(90deg, var(--ink2), transparent); }
  .clients::after { right: 0; background: linear-gradient(-90deg, var(--ink2), transparent); }

  .ticker-label {
    text-align: center;
    padding: 20px;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--muted);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
  }

  .ticker-track {
    display: flex;
    gap: 80px;
    animation: ticker 30s linear infinite;
    width: max-content;
    padding: 24px 0;
    align-items: center;
  }

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

  .client-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
  }

  .client-logo:hover { color: var(--gold); }

  .cl-sep { width: 4px; height: 4px; background: var(--gold); opacity: 0.3; transform: rotate(45deg); }

  /* ── COMMON SECTION ── */
  section { padding: 110px 72px; }

  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .section-eyebrow-line {
    width: 28px; height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .section-eyebrow-text {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
  }

  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
  }

  h2 em { font-style: italic; color: var(--gold); }

  .section-desc {
    font-size: 16px;
    color: var(--muted2);
    max-width: 520px;
    line-height: 1.75;
    font-weight: 300;
  }

  /* ── SERVICES ── */
  .services { background: var(--ink2); }

  .services-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
  }

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

  .service-card {
    background: var(--ink2);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }

  .service-card:hover { background: var(--ink3); }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }

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

  .service-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-weight: 300;
  }

  .service-icon-wrap {
    width: 48px; height: 48px;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 22px;
    transition: border-color 0.3s;
  }

  .service-card:hover .service-icon-wrap { border-color: rgba(200,169,110,0.35); }

  .service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
  }

  .service-card p {
    font-size: 13.5px;
    color: var(--muted2);
    line-height: 1.7;
    margin-bottom: 22px;
    font-weight: 300;
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tag {
    padding: 3px 9px;
    font-size: 10px;
    font-family: 'DM Mono', monospace;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--muted);
    letter-spacing: 0.5px;
    font-weight: 300;
  }

  /* ── PROCESS ── */
  .process {
    background: var(--ink);
    position: relative;
    overflow: hidden;
  }

  .process-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(200,169,110,0.04), transparent 60%);
  }

  .process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
    z-index: 1;
  }

  .process-steps { margin-top: 52px; }

  .step {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 24px;
    margin-bottom: 0;
    position: relative;
  }

  .step:not(:last-child) {
    padding-bottom: 40px;
  }

  .step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 44px;
    bottom: 0;
    width: 1px;
    background: var(--border);
  }

  .step-num {
    width: 48px; height: 48px;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    z-index: 1;
    background: var(--ink);
  }

  .step-body { padding-top: 10px; }

  .step-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
  }

  .step-body p {
    font-size: 13.5px;
    color: var(--muted2);
    line-height: 1.7;
    font-weight: 300;
  }

  .process-metrics {
    margin-top: 52px;
  }

  .metrics-card {
    background: var(--ink3);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
  }

  .metrics-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.5;
  }

  .metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 36px;
  }

  .metric {
    background: var(--ink3);
    padding: 24px 20px;
    text-align: center;
  }

  .metric-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
  }

  .metric-val em { color: var(--gold); font-style: normal; font-size: 20px; }
  .metric-lbl { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-family: 'DM Mono', monospace; font-weight: 300; }

  .prog-item { margin-bottom: 20px; }

  .prog-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12.5px;
  }

  .prog-header span:first-child { color: var(--muted2); font-weight: 300; }
  .prog-header span:last-child { color: var(--gold); font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 300; }

  .prog-bar {
    height: 2px;
    background: rgba(255,255,255,0.05);
    overflow: hidden;
  }

  .prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    transition: width 1.5s ease;
  }

  /* ── TECH STACK ── */
  .tech { background: var(--ink2); }

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

  .tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .tech-item {
    background: var(--ink2);
    padding: 22px 16px;
    text-align: center;
    transition: background 0.3s;
    cursor: default;
  }

  .tech-item:hover { background: var(--ink3); }
  .tech-icon { font-size: 26px; margin-bottom: 8px; }
  .tech-name { font-size: 11px; font-weight: 400; color: var(--muted); font-family: 'DM Mono', monospace; font-weight: 300; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--ink3); }

  .testi-header { margin-bottom: 60px; }

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

  .testi-card {
    background: var(--ink2);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    transition: border-color 0.3s;
  }

  .testi-card:hover { border-color: rgba(200,169,110,0.25); }

  .testi-card.featured {
    border-color: rgba(200,169,110,0.2);
    background: rgba(200,169,110,0.02);
  }

  .stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  .testi-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 17px;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .author-avatar {
    width: 40px; height: 40px;
    border: 1px solid rgba(200,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    flex-shrink: 0;
    font-weight: 300;
  }

  .author-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
  }

  .author-role { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; font-weight: 300; }

  /* ── PORTFOLIO ── */
  .portfolio { background: var(--ink2); }

  .portfolio-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }

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

  .port-card {
    border: 1px solid var(--border);
    background: var(--ink3);
    transition: all 0.4s;
    overflow: hidden;
    cursor: pointer;
  }

  .port-card:hover {
    border-color: rgba(200,169,110,0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }

  .port-thumb {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .pt1 { background: linear-gradient(135deg, #0d1628 0%, #162040 100%); }
  .pt2 { background: linear-gradient(135deg, #0d1020 0%, #18103a 100%); }
  .pt3 { background: linear-gradient(135deg, #041214 0%, #082830 100%); }
  .pt4 { background: linear-gradient(135deg, #140820 0%, #240d38 100%); }
  .pt5 { background: linear-gradient(135deg, #101408 0%, #1e2410 100%); }
  .pt6 { background: linear-gradient(135deg, #100808 0%, #241010 100%); }

  .port-thumb-content { text-align: center; z-index: 1; }
  .port-thumb-icon { font-size: 36px; margin-bottom: 8px; opacity: 0.7; }
  .port-thumb-title { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 2px; font-weight: 300; }

  .port-category {
    position: absolute;
    top: 14px; left: 14px;
    padding: 4px 10px;
    font-size: 10px;
    font-family: 'DM Mono', monospace;
    color: var(--gold);
    border: 1px solid rgba(200,169,110,0.3);
    background: rgba(10,13,20,0.8);
    letter-spacing: 1px;
    font-weight: 300;
  }

  .port-info { padding: 26px; border-top: 1px solid var(--border); }

  .port-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  .port-info p { font-size: 13px; color: var(--muted2); line-height: 1.65; font-weight: 300; }

  /* ── TEAM ── */
  .team { background: var(--ink); }

  .team-header { margin-bottom: 60px; }

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

  .team-card {
    background: var(--ink3);
    border: 1px solid var(--border);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .team-card:hover { border-color: rgba(200,169,110,0.2); transform: translateY(-3px); }
  .team-card:hover::before { opacity: 0.5; }

  .team-avatar {
    width: 72px; height: 72px;
    border: 1px solid rgba(200,169,110,0.25);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--gold);
    position: relative;
  }

  .team-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
  }

  .team-role {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 300;
  }

  .team-bio { font-size: 13px; color: var(--muted2); line-height: 1.65; margin-bottom: 22px; font-weight: 300; }

  .team-socials { display: flex; justify-content: center; gap: 8px; }

  .social-link {
    width: 30px; height: 30px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'DM Mono', monospace;
  }

  .social-link:hover { border-color: var(--gold); color: var(--gold); }

  /* ── PRICING ── */
  .pricing { background: var(--ink2); }

  .pricing-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }

  .pricing-toggle {
    display: inline-flex;
    gap: 0;
    background: var(--ink3);
    border: 1px solid var(--border);
    padding: 4px;
    margin-top: 28px;
  }

  .toggle-btn {
    padding: 8px 22px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--muted);
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
  }

  .toggle-btn.active { background: var(--gold); color: var(--ink); font-weight: 600; }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .price-card {
    background: var(--ink2);
    padding: 48px 40px;
    position: relative;
    transition: background 0.3s;
  }

  .price-card:hover { background: var(--ink3); }

  .price-card.popular {
    background: var(--ink3);
  }

  .price-card.popular::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
  }

  .popular-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: 'DM Mono', monospace;
  }

  .price-tier {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 300;
  }

  .price-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
  }

  .price-desc { font-size: 13px; color: var(--muted2); margin-bottom: 32px; font-weight: 300; }

  .price-amount {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }

  .price-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
  }

  .price-num sup { font-size: 22px; vertical-align: super; color: var(--muted2); font-weight: 400; }
  .price-num sub { font-size: 14px; vertical-align: baseline; color: var(--muted); font-weight: 400; font-family: 'Outfit', sans-serif; letter-spacing: 0; }

  .price-features { list-style: none; margin-bottom: 36px; }

  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text);
    margin-bottom: 13px;
    line-height: 1.5;
    font-weight: 300;
  }

  .price-features li .check { color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
  .price-features li .cross { color: var(--muted); flex-shrink: 0; font-size: 12px; margin-top: 2px; }

  /* ── FAQ ── */
  .faq { background: var(--ink); }

  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
  }

  .faq-left { position: sticky; top: 110px; }

  .faq-item { border-bottom: 1px solid var(--border); }

  .faq-q {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    gap: 20px;
    transition: color 0.3s;
  }

  .faq-q:hover { color: var(--white); }

  .faq-icon {
    width: 28px; height: 28px;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s;
    font-weight: 300;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }

  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 14px;
    color: var(--muted2);
    line-height: 1.8;
    font-weight: 300;
  }

  .faq-item.open .faq-a { max-height: 200px; }
  .faq-a-inner { padding-bottom: 22px; }

  /* ── CTA ── */
  .cta-section {
    padding: 110px 72px;
    background: var(--ink3);
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,169,110,0.06), transparent 70%);
  }

  .cta-box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .cta-box h2 { font-size: clamp(36px, 4vw, 64px); margin-bottom: 20px; }
  .cta-box p { font-size: 17px; color: var(--muted2); margin-bottom: 44px; font-weight: 300; line-height: 1.75; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; }
  .cta-actions .btn { padding: 16px 36px; font-size: 14px; }

  /* ── CONTACT ── */
  .contact { background: var(--ink2); }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
  }

  .contact-items { margin-top: 48px; }

  .contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }

  .contact-item:last-child { border-bottom: none; }

  .contact-icon {
    width: 40px; height: 40px;
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 11px;
    font-family: 'DM Mono', monospace;
  }

  .contact-item p { font-size: 14px; color: var(--text); font-weight: 300; line-height: 1.6; }

  .contact-form {
    background: var(--ink3);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
  }

  .contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.4;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

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

  .form-group label {
    display: block;
    font-size: 10px;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'DM Mono', monospace;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--ink2);
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s;
    outline: none;
    font-weight: 300;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: rgba(200,169,110,0.4); }

  .form-group textarea { min-height: 110px; resize: vertical; }
  .form-group select option { background: var(--ink2); }

  .form-submit {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    padding: 15px 36px;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    width: 100%;
    letter-spacing: 0.5px;
    margin-top: 6px;
  }

  .form-submit:hover {
    background: var(--gold2);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.2);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 1px solid var(--border);
    padding: 80px 72px 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand .logo { margin-bottom: 20px; }

  .footer-brand p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 280px;
    font-weight: 300;
  }

  .footer-socials { display: flex; gap: 8px; }

  .footer-col h5 {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }

  .footer-col ul li a {
    font-size: 13px;
    color: var(--muted2);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy { font-size: 12px; color: var(--muted); font-family: 'DM Mono', monospace; font-weight: 300; }

  .footer-legal { display: flex; gap: 24px; }

  .footer-legal a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'DM Mono', monospace;
    font-weight: 300;
  }

  .footer-legal a:hover { color: var(--gold); }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,13,20,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

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

  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-menu a:hover { color: var(--gold); }

  .close-menu {
    position: absolute;
    top: 24px; right: 28px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
  }

  /* ── REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

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

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    nav, section, .hero, .cta-section, footer { padding-left: 40px; padding-right: 40px; }
    nav.scrolled { padding-left: 40px; padding-right: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-layout { grid-template-columns: 1fr; gap: 60px; }
    .tech-grid { grid-template-columns: repeat(4, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .contact-layout { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-left { position: static; }
    .services-top, .portfolio-top, .pricing-top, .tech-header { grid-template-columns: 1fr; gap: 24px; }
  }

  @media (max-width: 768px) {
    nav { padding: 18px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 110px 24px 60px; }
    section { padding: 70px 24px; }
    .cta-section { padding: 70px 24px; }
    footer { padding: 60px 24px 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 0; }
    .stat-item { padding: 20px 0; border-right: none; border-bottom: 1px solid var(--border); margin-right: 0; }
    .stat-item:last-child { border-bottom: none; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .metric-row { grid-template-columns: 1fr; }
  }

    .login-logo-img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 30px var(--accent-glow);
}
