:root {
    --bg: #07080a;
    --bg2: #0c0e12;
    --bg3: #12151c;
    --border: #1a1e28;
    --accent: #d4622a;
    --accent2: #f0a840;
    --text: #e8eaf0;
    --muted: #626880;
    --dim: #242836;
    --success: #14a85c;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: auto; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: 0.3;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 56px;
    border-bottom: 1px solid var(--border);
    background: rgba(7,8,10,0.97);
    backdrop-filter: blur(14px);
    transition: background 0.3s, border-color 0.3s;
  }
  nav.scrolled {
    background: rgba(7,8,10,0.95);
    border-color: var(--border);
    backdrop-filter: blur(14px);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 4px;
    color: var(--text); text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
  .nav-links a {
    font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--muted); text-decoration: none; font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 8px 22px !important;
    letter-spacing: 2px !important;
    transition: opacity 0.2s !important;
  }
  .nav-cta:hover { opacity: 0.85 !important; }

  /* Hamburger button — hidden on desktop, shown on mobile */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 600;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center; padding: 120px 48px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 55% at 50% 0%, rgba(212,98,42,0.13) 0%, transparent 65%),
      radial-gradient(ellipse 40% 30% at 15% 70%, rgba(240,168,64,0.07) 0%, transparent 55%),
      radial-gradient(ellipse 30% 25% at 85% 85%, rgba(20,168,92,0.04) 0%, transparent 50%);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--border); padding: 6px 16px;
    margin-bottom: 32px; font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--muted); font-weight: 500;
    opacity: 0; animation: fadeUp 0.8s 0.15s forwards;
  }
  .hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--success); animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }
  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 13vw, 128px);
    letter-spacing: 8px; line-height: 0.92; color: var(--text);
    margin-bottom: 8px;
    opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
  }
  .hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(22px, 4.5vw, 40px);
    letter-spacing: 10px; color: var(--accent);
    margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
  }
  .hero-desc {
    max-width: 560px; font-size: 15px; color: var(--muted);
    font-weight: 300; line-height: 1.85; margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
  }
  .hero-proof {
    display: flex; gap: 0; margin-bottom: 52px;
    opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
    border: 1px solid var(--border); overflow: hidden; flex-wrap: wrap;
    justify-content: center;
  }
  .proof-item {
    padding: 20px 36px; border-right: 1px solid var(--border);
    text-align: center;
  }
  .proof-item:last-child { border-right: none; }
  .proof-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px; letter-spacing: 2px; color: var(--text); line-height: 1;
  }
  .proof-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
  .hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    opacity: 0; animation: fadeUp 0.8s 0.95s forwards;
  }
  .scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeIn 1s 1.5s forwards;
  }
  .scroll-hint span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--dim); }
  .scroll-dot { width: 1px; height: 40px; background: linear-gradient(180deg, var(--accent), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }

  /* BUTTONS */
  .btn-primary {
    background: var(--accent); color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    padding: 16px 40px; border: none; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: opacity 0.2s, transform 0.15s;
  }
  .btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--text);
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    padding: 15px 40px; border: 1px solid var(--border);
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: border-color 0.2s, transform 0.15s;
  }
  .btn-ghost:hover { border-color: var(--muted); transform: translateY(-1px); }

  /* SECTION */
  .section { max-width: 1200px; margin: 0 auto; padding: 100px 56px; }
  .section-tag {
    font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--accent); font-weight: 500; margin-bottom: 12px; display: block;
  }
  .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 5.5vw, 58px);
    letter-spacing: 4px; color: var(--text); margin-bottom: 56px; line-height: 1;
  }

  /* TRUST BAR */
  .trust-bar {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 56px;
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; color: var(--muted); font-weight: 400;
  }
  .trust-icon { color: var(--success); font-size: 14px; }
  .trust-item strong { color: var(--text); font-weight: 500; }

  /* PORTFOLIO */
  .portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .thumb-wrap {
    position: relative; aspect-ratio: 16/9;
    overflow: hidden; cursor: pointer; background: var(--bg3);
  }
  .thumb-wrap svg { width: 100%; height: 100%; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
  .thumb-wrap:hover svg { transform: scale(1.04); }
  .thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7,8,10,0.93) 100%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 20px;
  }
  .thumb-wrap:hover .thumb-overlay { opacity: 1; }
  .thumb-niche {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--accent); font-weight: 500;
    border: 1px solid var(--accent); padding: 4px 10px;
  }

  /* ABOUT */
  #about { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-photo-col { display: flex; flex-direction: column; gap: 24px; }
  .about-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--bg3);
    border: 4px solid var(--accent);
    box-shadow: 0 0 0 6px rgba(212,98,42,0.15), 0 0 40px rgba(212,98,42,0.2);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    transition: box-shadow 0.3s;
  }
  .about-photo:hover {
    box-shadow: 0 0 0 8px rgba(212,98,42,0.2), 0 0 60px rgba(212,98,42,0.3);
  }
  .about-photo-placeholder {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
  }
  .about-photo-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--dim); display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--muted);
    letter-spacing: 2px;
  }
  .about-photo-hint {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--dim); font-weight: 500; text-align: center;
  }
  .about-photo-accent { display: none; }
  .about-quick-facts { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
  .about-fact {
    padding: 12px 16px; border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px;
  }
  .about-fact:last-child { border-bottom: none; }
  .about-fact-label { color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
  .about-fact-value { color: var(--text); font-weight: 500; }

  .about-content-col { padding-top: 4px; }
  .about-lead {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    letter-spacing: 3px; color: var(--text); line-height: 1.1;
    margin-bottom: 32px;
  }
  .about-lead span { color: var(--accent); }
  .about-body { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
  .about-body p { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.85; }
  .about-body p strong { color: var(--text); font-weight: 500; }
  .about-highlight {
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    background: rgba(212,98,42,0.05);
    font-size: 14px; color: #9096a8; font-style: italic; line-height: 1.8;
    margin: 8px 0;
  }
  .about-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .about-tag {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 600; padding: 6px 14px;
    border: 1px solid var(--border); color: var(--muted);
    transition: all 0.2s;
  }
  .about-tag:hover { border-color: var(--accent); color: var(--accent); }
  .about-socials {
    display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap;
  }
  .about-social-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 600; padding: 9px 18px;
    border: 1px solid var(--border); color: var(--muted);
    text-decoration: none; transition: all 0.2s;
  }
  .about-social-link:hover { border-color: var(--accent); color: var(--accent); }
  .about-social-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

  @media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photo { width: 180px; height: 180px; max-width: none; }
  }

  /* PLATFORM BADGES */
  .platform-row {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .platform-badge {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; padding: 6px 18px; border: 1px solid var(--border);
    color: var(--muted); text-decoration: none; transition: all 0.2s;
  }
  .platform-badge.fiverr { border-color: #1dbf73; color: #1dbf73; }
  .platform-badge.upwork { border-color: #14a85c; color: #14a85c; }
  .platform-badge:hover { background: rgba(255,255,255,0.04); }

  /* SERVICES */
  #services { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 2px; background: var(--border);
  }
  .pkg-card {
    background: var(--bg2); padding: 40px 32px;
    position: relative; transition: background 0.2s;
  }
  .pkg-card.featured { background: var(--bg3); border-top: 2px solid var(--accent); }
  .pkg-card:hover { background: var(--bg3); }
  .pkg-badge { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; font-weight: 700; }
  .pkg-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; color: var(--text); margin-bottom: 10px; }
  .pkg-rate { font-family: 'Bebas Neue', sans-serif; font-size: 44px; letter-spacing: 2px; color: var(--text); line-height: 1; margin-bottom: 4px; }
  .pkg-rate span { font-size: 18px; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 300; }
  .pkg-type { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--success); font-weight: 600; margin-bottom: 16px; margin-top: 2px; }
  .pkg-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
  .pkg-features { list-style: none; margin-bottom: 32px; }
  .pkg-features li { font-size: 12px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
  .pkg-features li::before { content: '✓'; color: var(--success); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
  .pkg-links { display: flex; gap: 8px; flex-direction: column; }

  /* SKILLS */
  #skills { background: var(--bg); }
  .skills-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 2px;
    background: var(--border);
  }
  .skill-item {
    background: var(--bg); padding: 28px 24px;
    transition: background 0.2s;
  }
  .skill-item:hover { background: var(--bg3); }
  .skill-name { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
  .skill-bar-bg { height: 2px; background: var(--border); margin-bottom: 10px; }
  .skill-bar-fill { height: 2px; background: var(--accent); transition: width 1.2s ease; width: 0; }
  .skill-bar-fill.animated { width: var(--w); }
  .skill-level { font-size: 10px; color: var(--muted); letter-spacing: 1px; }

  /* PROCESS */
  #process { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .process-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); }
  .process-step { padding: 44px 28px; border-right: 1px solid var(--border); }
  .process-step:last-child { border-right: none; }
  .process-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--border); line-height: 1; margin-bottom: 14px; transition: color 0.3s; }
  .process-step:hover .process-num { color: var(--dim); }
  .process-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--text); margin-bottom: 10px; }
  .process-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; }

  /* TESTIMONIALS */
  #testimonials { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
  .testi-card { background: var(--bg); padding: 36px 28px; }
  .testi-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; flex-shrink: 0;
  }
  .testi-info { flex: 1; }
  .testi-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
  .testi-role { font-size: 11px; color: var(--muted); }
  .testi-stars { color: var(--accent2); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
  .testi-quote { font-size: 13px; color: #9096a8; font-weight: 300; font-style: italic; line-height: 1.8; margin-bottom: 16px; }
  .testi-job { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); font-weight: 500; }

  /* ARTICLES */
  #articles { background: var(--bg2); border-top: 1px solid var(--border); }
  .articles-intro { max-width: 600px; font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.8; margin-bottom: 56px; margin-top: -24px; }
  .articles-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 2px; background: var(--border);
  }

  /* ── Article category tabs ── */
  .articles-tabs {
    display: flex; gap: 2px; margin-bottom: 40px;
    background: var(--border); width: fit-content;
  }
  .articles-tab {
    background: var(--bg2); color: var(--muted);
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 12px 28px; border: none; cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .articles-tab.active { background: var(--accent); color: #fff; }
  .articles-tab:hover:not(.active) { background: var(--bg3); color: var(--text); }
  .articles-section { display: none; }
  .articles-section.active { display: block; }
  .articles-section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px,3vw,26px); letter-spacing: 4px;
    color: var(--text); margin: 0 0 6px;
  }
  .articles-section-sub {
    font-size: 13px; color: var(--muted); font-weight: 300;
    line-height: 1.7; margin-bottom: 28px; max-width: 520px;
  }
  /* Web articles — green accent */
  .article-card[data-cat="web"] .article-tag  { color: #14a85c; }
  .article-card[data-cat="web"] .article-read { color: #14a85c; }
  .article-card[data-cat="web"]:hover { border-left-color: #14a85c; }
  @media (max-width: 960px) {
    .articles-tabs { width: 100%; }
    .articles-tab  { flex: 1; text-align: center; }
  }
  .article-card {
    background: var(--bg2); padding: 32px 26px 28px;
    cursor: pointer; transition: background 0.2s;
    display: flex; flex-direction: column;
  }
  .article-card:hover { background: var(--bg3); }
  .article-num { display: none; }

  .article-tag { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
  .article-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--text); line-height: 1.2; margin-bottom: 12px; }
  .article-excerpt { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.7; flex: 1; margin-bottom: 20px; }
  .article-read { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 700; cursor: pointer; border: none; background: none; padding: 0; font-family: 'DM Sans', sans-serif; text-align: left; }
  .article-read:hover { text-decoration: underline; }

  /* MODAL */
  .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(7,8,10,0.96); z-index: 800; overflow-y: auto; padding: 40px 24px; }
  .modal-overlay.open { display: flex; justify-content: center; }
  .modal-box { background: var(--bg2); border: 1px solid var(--border); max-width: 800px; width: 100%; padding: 56px 64px; position: relative; align-self: flex-start; margin: auto; }
  .modal-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--muted); font-size: 28px; cursor: pointer; line-height: 1; transition: color 0.2s; }
  .modal-close:hover { color: var(--text); }
  .modal-tag { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 16px; display: block; }
  .modal-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 5vw, 42px); letter-spacing: 3px; color: var(--text); line-height: 1.1; margin-bottom: 20px; }
  .modal-meta { font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
  .modal-body { font-size: 15px; color: #9096a8; font-weight: 300; line-height: 1.85; }
  .modal-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--text); margin: 32px 0 10px; }
  .modal-body p { margin-bottom: 16px; }
  .modal-body ul { padding-left: 20px; margin-bottom: 16px; }
  .modal-body li { margin-bottom: 8px; }
  .modal-body strong { color: var(--text); font-weight: 500; }
  .modal-body .highlight { border-left: 3px solid var(--accent); padding: 14px 18px; background: rgba(212,98,42,0.05); margin: 24px 0; font-style: italic; }

  /* CTA */
  #contact {
    background: var(--bg); text-align: center;
    padding: 140px 48px; position: relative; overflow: hidden;
    border-top: 1px solid var(--border);
  }
  #contact::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(212,98,42,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .contact-big { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 9vw, 104px); letter-spacing: 6px; line-height: 1; color: var(--text); margin-bottom: 8px; }
  .contact-big-sub { font-family: 'Bebas Neue', sans-serif; font-size: clamp(24px, 4.5vw, 50px); letter-spacing: 6px; color: var(--accent); margin-bottom: 20px; }
  .contact-note { font-size: 14px; color: var(--muted); font-weight: 300; margin-bottom: 44px; }
  .contact-divider { width: 1px; height: 56px; background: linear-gradient(180deg, var(--accent), transparent); margin: 44px auto 0; }

  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 28px 56px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 4px; color: var(--text); }
  .footer-logo span { color: var(--accent); }
  .footer-copy { font-size: 11px; color: var(--dim); letter-spacing: 1px; }
  .footer-links { display: flex; gap: 24px; list-style: none; }
  .footer-links a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text); }

  /* ANIMATIONS */
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }
  @keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* GUARANTEE BADGE */
  .guarantee-badge {
    display: inline-flex; align-items: center; gap: 12px;
    border: 1px solid rgba(212,98,42,0.4);
    background: rgba(212,98,42,0.07);
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 12px; color: var(--text);
    letter-spacing: 0.5px; font-weight: 400;
    position: relative; overflow: hidden;
  }
  .guarantee-badge::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(212,98,42,0.08), transparent 60%);
    pointer-events: none;
  }
  .guarantee-icon {
    font-size: 20px; line-height: 1; flex-shrink: 0;
  }
  .guarantee-text strong {
    color: var(--accent); font-weight: 700; display: block;
    font-size: 13px; letter-spacing: 0.5px; margin-bottom: 1px;
  }
  .guarantee-text span {
    color: var(--muted); font-size: 11px; letter-spacing: 1px;
  }

  /* CONTACT GUARANTEE BLOCK */
  .contact-guarantee {
    display: inline-flex; align-items: center; gap: 16px;
    border: 1px solid rgba(212,98,42,0.35);
    background: rgba(212,98,42,0.06);
    padding: 18px 32px; margin: 0 auto 40px;
    max-width: 480px; width: 100%;
  }
  .cg-icon { font-size: 32px; line-height: 1; flex-shrink: 0; }
  .cg-text { text-align: left; }
  .cg-text strong {
    display: block; font-family: 'Bebas Neue', sans-serif;
    font-size: 20px; letter-spacing: 3px; color: var(--accent);
    line-height: 1.1; margin-bottom: 4px;
  }
  .cg-text span { font-size: 12px; color: var(--muted); letter-spacing: 0.5px; line-height: 1.6; }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    nav { padding: 14px 20px; flex-wrap: wrap; gap: 10px; }
    .nav-links { gap: 10px; }
    .nav-links a { font-size: 9px; letter-spacing: 1.5px; }
    .nav-links { display: flex; flex-wrap: wrap; gap: 12px; }
    .hero { padding: 100px 28px 72px; }
    #contact { padding: 100px 24px 80px; }
    .section { padding: 72px 24px; }
    .trust-bar { padding: 20px 24px; gap: 24px; }
    .portfolio-grid, .testi-grid, .articles-grid { grid-template-columns: repeat(2,1fr); }
    .process-row { grid-template-columns: repeat(2,1fr); }
    .process-step { border-bottom: 1px solid var(--border); }
    .modal-box { padding: 36px 24px; }
    footer { padding: 24px; }
    .hero-proof { flex-direction: row; }
    .proof-item { padding: 16px 20px; }
    /* hero text scale */
    .hero-title    { font-size: clamp(52px, 11vw, 128px); letter-spacing: 4px; }
    .hero-subtitle { font-size: clamp(18px, 4vw, 40px);  letter-spacing: 6px; }
    .hero-desc     { font-size: 14px; max-width: 480px; margin-bottom: 36px; }
    .btn-primary, .btn-ghost { padding: 14px 28px; font-size: 10px; }
    .guarantee-badge { flex-direction: row; padding: 14px 20px; gap: 12px; }
    .articles-tabs { width: 100%; }
    .articles-tab  { flex: 1; text-align: center; }
  }
  @media (max-width: 640px) {
    .hero { padding: 90px 20px 64px; }
    .hero-title    { font-size: clamp(44px, 14vw, 90px); letter-spacing: 2px; }
    .hero-subtitle { font-size: clamp(14px, 4.5vw, 28px); letter-spacing: 4px; }
    .hero-roles    { font-size: 13px; letter-spacing: 2px; }
    .hero-desc     { font-size: 13.5px; margin-bottom: 28px; line-height: 1.75; }
    .hero-actions  { flex-direction: column; align-items: center; gap: 10px; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; padding: 16px 20px; }
    .hero-badge    { font-size: 9px; letter-spacing: 1.5px; padding: 5px 12px; margin-bottom: 22px; }
    .guarantee-badge { margin-top: 16px; padding: 12px 16px; font-size: 12px; }
    .cg-text strong { font-size: 12px; }
    .home-web-teaser { gap: 8px; }
    .teaser-text { font-size: 11px; }
    .portfolio-grid, .testi-grid, .articles-grid { grid-template-columns: 1fr; }
    .process-row { grid-template-columns: 1fr; }
    .hero-proof { flex-direction: column; }
    .proof-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  }
  @media (max-width: 400px) {
    .hero { padding: 80px 16px 56px; }
    .hero-title { font-size: clamp(40px, 16vw, 72px); }
    .section { padding: 56px 16px; }
  }

  /* Mobile nav — hamburger + slide-down menu */
  @media (max-width: 768px) {
    nav {
      flex-wrap: nowrap;
      justify-content: space-between;
      padding: 14px 20px;
      gap: 0;
    }
    .nav-hamburger { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%; left: 0; right: 0;
      flex-direction: column;
      background: rgba(7,8,10,0.99);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 8px 20px 20px;
      gap: 0;
      flex-wrap: nowrap;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; list-style: none; }
    .nav-links a {
      display: block;
      width: 100%;
      padding: 13px 4px;
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-cta {
      margin-top: 10px !important;
      text-align: center !important;
      display: block !important;
      padding: 12px 20px !important;
      border-bottom: none !important;
      border-radius: 2px;
    }
  }

  /* ═══════════ CREATIVE DESIGNER UPGRADES ═══════════ */

  /* Custom cursor */
  body { cursor: none; }
  .cursor {
    position: fixed; width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent); pointer-events: none; z-index: 99999;
    transform: translate(-50%,-50%); transition: transform 0.1s, opacity 0.3s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px; border-radius: 50%;
    border: 1.5px solid var(--accent); pointer-events: none; z-index: 99998;
    transform: translate(-50%,-50%); transition: all 0.18s ease;
    opacity: 0.6;
  }
  .cursor-ring.expand { transform: translate(-50%,-50%) scale(1.7); opacity: 0.3; }

  /* Hero 3D canvas container */
  #hero-canvas {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    overflow: hidden;
  }
  #hero-canvas canvas { display: block; width: 100% !important; height: 100% !important; }

  /* ── Hero element depth layers ── */
  .hero > * { position: relative; z-index: 2; }
  .hero-badge, .hero-title, .hero-subtitle, .hero-roles,
  .hero-desc, .hero-actions, .guarantee-badge,
  .home-web-teaser, .teaser-btn { will-change: transform; }

  /* ── Keyframe animations ── */
  @keyframes heroFadeUp {
    from { opacity:0; transform:translateY(38px) scale(0.96); filter:blur(3px); }
    to   { opacity:1; transform:translateY(0)    scale(1);    filter:blur(0); }
  }
  @keyframes heroPulseGlow {
    0%,100% { text-shadow: 0 0 0 rgba(212,98,42,0); }
    50%     { text-shadow: 0 0 28px rgba(212,98,42,0.32), 0 0 56px rgba(240,168,64,0.14); }
  }
  @keyframes heroSubGlow {
    0%,100% { text-shadow: none; }
    50%     { text-shadow: 0 0 20px rgba(212,98,42,0.45), 0 0 6px rgba(240,168,64,0.25); }
  }
  @keyframes heroBadgePulse {
    0%,100% { box-shadow:none; border-color:rgba(255,255,255,0.08); }
    50%     { box-shadow:0 0 16px 1px rgba(212,98,42,0.16); border-color:rgba(212,98,42,0.38); }
  }
  @keyframes heroScanLine {
    0%   { top:-2px; opacity:0; }
    6%   { opacity:1; }
    94%  { opacity:1; }
    100% { top:100%; opacity:0; }
  }
  @keyframes heroFloat {
    0%,100% { transform:translateY(0); }
    50%     { transform:translateY(-8px); }
  }
  @keyframes heroCTAShimmer {
    from { background-position:-200% center; }
    to   { background-position:200% center; }
  }

  /* ── Per-element entrance + idle animations ── */
  .hero-badge     { animation: heroFadeUp .9s .1s both, heroBadgePulse 3.5s 1.8s ease-in-out infinite; }
  .hero-title     { animation: heroFadeUp .9s .28s both, heroPulseGlow 4.5s 2s ease-in-out infinite; }
  .hero-subtitle  { animation: heroFadeUp .9s .42s both, heroSubGlow 5s 2.5s ease-in-out infinite; }
  .hero-roles     { animation: heroFadeUp .9s .54s both; }
  .hero-desc      { animation: heroFadeUp .9s .66s both; }
  .hero-actions   { animation: heroFadeUp .9s .80s both; }
  .guarantee-badge{ animation: heroFadeUp .9s .94s both, heroFloat 4s 2s ease-in-out infinite; }
  .home-web-teaser{ animation: heroFadeUp .9s 1.08s both; }
  .teaser-btn     { animation: heroFadeUp .9s 1.22s both; }

  /* ── Button shimmer on hover ── */
  .btn-primary {
    background-size: 200% auto;
    background-image: linear-gradient(90deg,var(--accent) 0%,#f0a840 40%,var(--accent) 60%,var(--accent) 100%);
  }
  .btn-primary:hover { animation: heroCTAShimmer 1.1s linear; }
  .guarantee-badge:hover {
    box-shadow: 0 0 22px rgba(212,98,42,0.22) !important;
    border-color: rgba(212,98,42,0.45) !important;
  }

  /* ── Injected UI overlays ── */
  #hero-cursor-glow {
    position: absolute; width:340px; height:340px; border-radius:50%;
    background: radial-gradient(circle,rgba(212,98,42,.10) 0%,rgba(240,168,64,.05) 40%,transparent 70%);
    pointer-events:none; z-index:1;
    transform:translate(-50%,-50%);
    transition: left .18s ease-out, top .18s ease-out, opacity .4s;
    mix-blend-mode:screen;
  }
  #hero-scan-line {
    position:absolute; left:0; right:0; height:1px; top:0;
    background: linear-gradient(90deg,transparent 0%,rgba(212,98,42,.55) 30%,rgba(240,168,64,.8) 50%,rgba(212,98,42,.55) 70%,transparent 100%);
    box-shadow: 0 0 10px rgba(212,98,42,.45), 0 0 22px rgba(240,168,64,.18);
    pointer-events:none; z-index:3;
    animation: heroScanLine 7s 2.5s ease-in-out infinite;
  }
  #hero-frame-label {
    position:absolute; bottom:100px; left:50%;
    transform:translateX(-50%);
    font-size:9px; letter-spacing:3px; text-transform:uppercase;
    color:var(--accent); opacity:0; z-index:3;
    transition:opacity .5s; pointer-events:none;
  }

  /* ── Mobile ── */
  @media (max-width:640px) {
    .hero { padding:100px 20px 70px; }
    #hero-cursor-glow, #hero-scan-line { display:none; }
  }
  @media (prefers-reduced-motion:reduce) {
    .hero-badge,.hero-title,.hero-subtitle,.hero-roles,
    .hero-desc,.hero-actions,.guarantee-badge,
    .home-web-teaser,.teaser-btn { animation:none !important; opacity:1 !important; }
    #hero-scan-line { display:none; }
  }

  /* Glitch effect on name */
  @keyframes glitch1 {
    0%,100%{clip-path:inset(0 0 98% 0);transform:translate(-3px,0)}
    25%{clip-path:inset(40% 0 50% 0);transform:translate(3px,0)}
    50%{clip-path:inset(70% 0 10% 0);transform:translate(-2px,0)}
    75%{clip-path:inset(20% 0 70% 0);transform:translate(2px,0)}
  }
  @keyframes glitch2 {
    0%,100%{clip-path:inset(50% 0 30% 0);transform:translate(3px,0)}
    25%{clip-path:inset(80% 0 5% 0);transform:translate(-3px,0)}
    50%{clip-path:inset(10% 0 80% 0);transform:translate(2px,0)}
    75%{clip-path:inset(60% 0 20% 0);transform:translate(-2px,0)}
  }
  .hero-title {
    position: relative;
  }
  .hero-title::before, .hero-title::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0; right: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: inherit; letter-spacing: inherit; line-height: inherit;
    color: var(--accent); pointer-events: none;
  }
  .hero-title::before {
    animation: glitch1 4s infinite linear; opacity: 0.6;
  }
  .hero-title::after {
    color: #4af; animation: glitch2 4s infinite linear 0.1s; opacity: 0.4;
  }
  .hero-title:hover::before { animation-duration: 0.4s; }
  .hero-title:hover::after  { animation-duration: 0.4s; }

  /* Typewriter subtitle */
  .hero-subtitle {
    overflow: hidden; white-space: nowrap;
    border-right: 2px solid var(--accent);
    animation: typing 2s steps(28,end) 1.2s both, blink 0.75s step-end 3.2s 6;
    width: 0;
  }
  .hero-roles {
    font-size: 13px; letter-spacing: 2px; color: var(--muted);
    font-weight: 400; margin-top: 10px; margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.8s 2.8s forwards;
  }
  .hero-roles span { color: var(--accent); }
  @keyframes typing { from{width:0} to{width:100%} }
  @keyframes blink { 50%{border-color:transparent} }

  /* Floating label on nav logo */
  .nav-logo { position: relative; }
  .nav-logo::after {
    content: 'PORTFOLIO';
    position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
    font-size: 8px; letter-spacing: 3px; color: var(--accent);
    opacity: 0; transition: opacity 0.3s;
  }
  .nav-logo:hover::after { opacity: 1; }

  /* Magnetic button effect handled in JS */
  .btn-primary, .btn-ghost { position: relative; overflow: hidden; }
  .btn-primary::after, .btn-ghost::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.4s;
  }
  .btn-primary:hover::after, .btn-ghost:hover::after {
    transform: translateX(100%) skewX(-15deg);
  }

  /* Portfolio thumb zoom glow */
  .thumb-wrap::after {
    content: ''; position: absolute; inset: 0;
    box-shadow: inset 0 0 0 0 var(--accent);
    transition: box-shadow 0.4s;
    pointer-events: none;
  }
  .thumb-wrap:hover::after { box-shadow: inset 0 0 0 2px var(--accent); }

  /* Skill bar glow */
  .skill-bar-fill { box-shadow: none; transition: width 1.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s; }
  .skill-bar-fill.animated { box-shadow: 0 0 8px rgba(212,98,42,0.5); }

  /* Article card hover lift + left border slide */
  .article-card { transition: background 0.2s, transform 0.25s, border-left 0.25s; border-left: 3px solid transparent; }
  .article-card:hover { transform: translateY(-4px); border-left: 3px solid var(--accent); }

  /* Package card hover glow */
  .pkg-card { transition: background 0.2s, transform 0.25s, box-shadow 0.25s; }
  .pkg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212,98,42,0.1); }

  /* Testimonial card slide-in handled by JS observer */
  .testi-card { transition: opacity 0.6s, transform 0.6s; }
  .testi-card.hidden-left  { opacity: 0; transform: translateX(-40px); }
  .testi-card.hidden-right { opacity: 0; transform: translateX(40px); }

  /* Floating accent orb on CTA section */
  #contact { overflow: hidden; }
  .contact-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(80px); animation: orbFloat 6s ease-in-out infinite;
  }
  @keyframes orbFloat {
    0%,100%{transform:translateY(0) scale(1)}
    50%{transform:translateY(-30px) scale(1.1)}
  }

  /* Section tag animated underline */
  .section-tag { display: inline-block; position: relative; }
  .section-tag::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.6s ease;
  }
  .section-tag.visible::after { width: 100%; }

  /* Process number count-up pulse */
  @keyframes numPulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
  .process-num { transition: color 0.3s; }
  .process-step:hover .process-num { animation: numPulse 1s infinite; color: var(--accent); }

  /* Guarantee badge shimmer */
  @keyframes shimmer {
    0%{background-position:-400px 0}
    100%{background-position:400px 0}
  }
  .guarantee-badge, .contact-guarantee {
    background-image: linear-gradient(90deg, transparent 0%, rgba(212,98,42,0.06) 50%, transparent 100%);
    background-size: 400px 100%; background-repeat: no-repeat;
    animation: shimmer 3s infinite linear;
  }

  /* Scroll progress bar */
  #scroll-progress {
    position: fixed; top: 0; left: 0; height: 2px;
    background: var(--accent); width: 0%; z-index: 9998;
    transition: width 0.1s;
    box-shadow: 0 0 8px var(--accent);
  }


  /* ═══ WEBSITE SERVICES SECTION ═══ */
  #website { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .website-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
  }
  .website-services { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
  .ws-card {
    background: var(--bg); padding: 28px 24px;
    transition: background 0.2s;
  }
  .ws-card:hover { background: var(--bg3); }
  .ws-icon { font-size: 22px; margin-bottom: 12px; }
  .ws-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
  .ws-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; }

  /* Booking form */
  .booking-col { display: flex; flex-direction: column; gap: 0; }
  .booking-label {
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--accent); font-weight: 700; margin-bottom: 20px;
  }
  .booking-form { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
  .form-field {
    background: var(--bg); padding: 0;
    position: relative;
  }
  .form-field input, .form-field textarea, .form-field select {
    width: 100%; background: var(--bg);
    border: none; outline: none;
    color: var(--text); font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 300;
    padding: 18px 20px;
    transition: background 0.2s;
    resize: none;
  }
  .form-field textarea { height: 110px; }
  .form-field select { appearance: none; cursor: pointer; }
  .form-field select option { background: var(--bg3); }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--dim); }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus { background: var(--bg3); }
  .form-field .field-label {
    position: absolute; top: 6px; left: 20px;
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); font-weight: 700;
  }
  .form-field input, .form-field textarea, .form-field select {
    padding-top: 24px; padding-bottom: 12px;
  }
  .booking-submit {
    background: var(--accent); color: #fff;
    border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 18px 32px; margin-top: 2px;
    transition: opacity 0.2s; width: 100%;
    position: relative; overflow: hidden;
  }
  .booking-submit:hover { opacity: 0.85; }
  .booking-confirm {
    display: none; padding: 28px 24px;
    background: var(--bg3); border-left: 3px solid var(--accent);
    margin-top: 2px;
  }
  .booking-confirm.show { display: block; }
  .booking-confirm-icon { font-size: 28px; margin-bottom: 10px; }
  .booking-confirm-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px; color: var(--text);
    margin-bottom: 8px;
  }
  .booking-confirm-msg { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; }

  @media (max-width: 860px) {
    .website-grid { grid-template-columns: 1fr; gap: 40px; }
  }


  /* ═══ SPA PAGE SYSTEM ═══ */
  .spa-page {
    display: none; opacity: 0;
    animation: pageIn 0.45s ease forwards;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
  }
  .spa-page.active { display: block; }
  @keyframes pageIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* Active nav link */
  .nav-links a.nav-active { color: var(--accent) !important; }

  /* HOME page specifics — no section padding top, full viewport */
  #page-home { padding-top: 0; }
  #page-home .hero { min-height: 100vh; padding-top: 100px; }

  /* Inner page header bar */
  .page-header {
    padding: 56px 56px 0;
    max-width: 1200px; margin: 0 auto;
  }
  @media (max-width: 960px) { .page-header { padding: 40px 24px 0; } }


  /* HOME TEASER */
  .home-web-teaser {
    display: flex; align-items: center; gap: 16px;
    margin: 28px 0 12px; opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
  }
  .teaser-line { flex: 1; height: 1px; background: var(--border); max-width: 80px; }
  .teaser-text { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
  .teaser-btn {
    background: transparent; border: 1px solid var(--border);
    color: var(--muted); font-family: 'DM Sans', sans-serif;
    font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
    font-weight: 600; padding: 9px 22px; cursor: pointer;
    margin-bottom: 32px; transition: all 0.2s;
    opacity: 0; animation: fadeUp 0.8s 1.4s forwards;
  }
  .teaser-btn:hover { border-color: var(--accent); color: var(--accent); }

  /* WORK TABS */
  .work-tabs { display: flex; gap: 2px; margin-bottom: 0; background: var(--border); width: fit-content; }
  .work-tab {
    background: var(--bg2); color: var(--muted);
    font-family: 'DM Sans', sans-serif; font-size: 11px;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 12px 28px; border: none; cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .work-tab.active { background: var(--accent); color: #fff; }
  .work-tab:hover:not(.active) { background: var(--bg3); color: var(--text); }
  .work-tab-content { display: none; }
  .work-tab-content.active { display: block; }

  /* WEB PORTFOLIO GRID */
  .web-portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); }
  .web-port-card { background: var(--bg); transition: background 0.2s; }
  .web-port-card:hover { background: var(--bg3); }
  .web-port-preview {
    width: 100%; aspect-ratio: 16/9;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; border-bottom: 1px solid var(--border);
  }
  .web-port-info { padding: 20px 20px 24px; }
  .web-port-type { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
  .web-port-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--text); margin-bottom: 8px; }
  .web-port-desc { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
  .web-port-link {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); font-weight: 700; text-decoration: none;
    transition: opacity 0.2s;
  }
  .web-port-link:hover { opacity: 0.7; }
  .web-port-link.disabled { color: var(--dim); pointer-events: none; }

  @media (max-width: 860px) {
    .web-portfolio-grid { grid-template-columns: 1fr; }
    .work-tabs { width: 100%; }
    .work-tab { flex: 1; text-align: center; }
  }

/* ═══════════ PRODUCTION FIXES — 2026-06-14 ═══════════ */
.hero-subtitle {
  opacity: 1;
  display: inline-block;
  width: auto;
  max-width: 100%;
  overflow: visible;
  white-space: normal;
  border-right: 0;
  animation: heroFadeUp .9s .42s both, heroSubGlow 5s 2.5s ease-in-out infinite;
}
@media (min-width: 641px) {
  .hero-subtitle { white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
body { cursor: auto; }
@media (pointer: fine) {
  body.custom-cursor-enabled { cursor: none; }
}
@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}
img { max-width: 100%; }
.nav-links a:focus-visible,
.footer-links a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.article-read:focus-visible,
.web-port-link:focus-visible,
.about-social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.modal-overlay.open { align-items: flex-start; }
.modal-box { margin-top: 24px; margin-bottom: 24px; }
