 /* ── TOKENS ── */
    :root {
      --accent: #00e5a0;
      --accent2: #0057ff;
      --radius: 20px;
      --glass-border: rgba(255,255,255,0.12);
      --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    /* ── DARK (default) ── */
    [data-theme="dark"], [data-theme="auto"] {
      --bg: #0a0c10;
      --bg2: #111318;
      --surface: rgba(255,255,255,0.05);
      --surface-hover: rgba(255,255,255,0.09);
      --border: rgba(255,255,255,0.10);
      --text: #f0f2f5;
      --text-muted: rgba(240,242,245,0.55);
      --shadow: 0 8px 40px rgba(0,0,0,0.45);
      --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    }

    /* ── LIGHT ── */
    [data-theme="light"] {
      --bg: #f4f6fb;
      --bg2: #e8ecf4;
      --surface: rgba(255,255,255,0.55);
      --surface-hover: rgba(255,255,255,0.80);
      --border: rgba(0,0,0,0.08);
      --text: #0e1117;
      --text-muted: rgba(14,17,23,0.52);
      --shadow: 0 8px 40px rgba(0,60,200,0.09);
      --noise: none;
    }

    /* ── SYSTEM AUTO ── */
    @media (prefers-color-scheme: light) {
      [data-theme="auto"] {
        --bg: #f4f6fb;
        --bg2: #e8ecf4;
        --surface: rgba(255,255,255,0.55);
        --surface-hover: rgba(255,255,255,0.80);
        --border: rgba(0,0,0,0.08);
        --text: #0e1117;
        --text-muted: rgba(14,17,23,0.52);
        --shadow: 0 8px 40px rgba(0,60,200,0.09);
        --noise: none;
      }
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      transition: background var(--transition), color var(--transition);
      overflow-x: hidden;
    }

    /* ── BG MESH ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(0,229,160,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 85% 75%, rgba(0,87,255,0.10) 0%, transparent 60%);
      pointer-events: none;
      transition: var(--transition);
    }
    [data-theme="light"] body::before,
    @media (prefers-color-scheme: light) {
      [data-theme="auto"] body::before {
        background:
          radial-gradient(ellipse 70% 50% at 15% 20%, rgba(0,229,160,0.08) 0%, transparent 60%),
          radial-gradient(ellipse 60% 50% at 85% 75%, rgba(0,87,255,0.07) 0%, transparent 60%);
      }
    }

    /* ── GLASS UTIL ── */
    .glass {
      background: var(--surface);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: background var(--transition), box-shadow var(--transition);
    }
    .glass:hover { background: var(--surface-hover); }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: min(92%, 860px);
      z-index: 200;
      background: var(--surface);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
      transition: background var(--transition), border-radius var(--transition);
      overflow: hidden;
    }
    nav.menu-open { border-radius: 20px; }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
    }

    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .nav-logo span { color: var(--accent); }

    .nav-center {
      display: flex;
      gap: 4px;
      list-style: none;
    }
    .nav-center a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      padding: 7px 14px;
      border-radius: 50px;
      transition: color var(--transition), background var(--transition);
    }
    .nav-center a:hover { color: var(--accent); background: rgba(0,229,160,0.08); }

    .nav-right { display: flex; align-items: center; gap: 10px; }

    /* Theme toggle */
    .theme-toggle {
      display: flex;
      gap: 4px;
      background: rgba(128,128,128,0.12);
      border-radius: 50px;
      padding: 4px;
    }
    .theme-btn {
      border: none;
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      padding: 5px 9px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: background var(--transition), color var(--transition);
    }
    .theme-btn.active { background: var(--accent); color: #000; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 38px;
      height: 38px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: rgba(128,128,128,0.08);
      cursor: pointer;
      gap: 5px;
      padding: 0;
    }
    .hamburger span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .nav-drawer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .nav-drawer.open { max-height: 320px; }

    .nav-drawer-inner {
      border-top: 1px solid var(--border);
      padding: 16px 20px 20px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .nav-drawer-inner a {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      padding: 11px 14px;
      border-radius: 12px;
      transition: color var(--transition), background var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-drawer-inner a:hover { color: var(--accent); background: rgba(0,229,160,0.08); }
    .nav-drawer-inner a .link-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.5;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .nav-center { display: none; }
      .hamburger { display: flex; }
    }

    /* ── LAYOUT ── */
    main { position: relative; z-index: 1; }

    section {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── HERO ── */
    #hero {
      min-height: 120vh;
      display: flex;
      align-items: center;
      padding-top: 100px;
      padding-bottom: 52px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,229,160,0.12);
      border: 1px solid rgba(0,229,160,0.3);
      color: var(--accent);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge::before { content: '●'; font-size: 0.55rem; }

    .hero-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      line-height: 1.0;
      letter-spacing: -0.03em;
      color: var(--text);
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero-title .line-accent { color: var(--accent); }
    .hero-title .line-dim { color: var(--text-muted); }

    .hero-sub {
      margin-top: 24px;
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 480px;
      line-height: 1.7;
      font-weight: 300;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      margin-top: 36px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #000;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      padding: 14px 28px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 32px rgba(0,229,160,0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 48px rgba(0,229,160,0.5);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      padding: 13px 24px;
      border-radius: 50px;
      border: 1px solid var(--border);
      cursor: pointer;
      text-decoration: none;
      transition: border-color var(--transition), background var(--transition);
    }
    .btn-ghost:hover { border-color: var(--accent); background: rgba(0,229,160,0.06); }

    /* Avatar / deco */
    .hero-visual {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
      animation: fadeUp 0.8s 0.15s ease both;
    }
    .hero-avatar-img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 3px solid rgba(0,229,160,0.35);
      box-shadow: 0 0 60px rgba(0,229,160,0.2), var(--shadow);
      display: block;
    }
    .hero-ring {
      position: absolute;
      inset: -12px;
      border-radius: 50%;
      border: 2px dashed rgba(0,229,160,0.25);
      animation: spin 18s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── ABOUT ── */
    #about {
      padding-top: 100px;
      padding-bottom: 80px;
    }

    .section-label {
      font-size: 0.75rem;
      text-align: center;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Syne', sans-serif;
      text-align: center;
      font-weight: 800;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 20px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 40px;
      align-items: start;
    }

    .about-text {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      font-weight: 300;
    }
    .about-text strong { color: var(--text); font-weight: 500; }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .stat-card {
      padding: 24px 20px;
      border-radius: 16px;
      text-align: left;
    }

    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 6px;
      font-weight: 400;
    }

    /* ── SERVICES ── */
    #services {
      padding-top: 100px;
      padding-bottom: 80px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(255px,1fr));
      gap: 20px;
      margin-top: 48px;
    }

    .service-card {
      padding: 32px 28px;
      border-radius: var(--radius);
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      opacity: 0;
      transition: opacity var(--transition);
    }
    .service-card:hover { transform: translateY(-6px); }
    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(0,229,160,0.12);
      border: 1px solid rgba(0,229,160,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      transition: transform 0.3s;
    }
    .service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }

    .service-name {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.7;
      font-weight: 300;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 18px;
    }

    .tag {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--accent);
      background: rgba(0,229,160,0.10);
      border: 1px solid rgba(0,229,160,0.18);
      border-radius: 50px;
      padding: 3px 10px;
    }

    /* ── FAQ ── */
    #faq {
      padding-top: 100px;
      padding-bottom: 100px;
    }

    .faq-list {
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 760px;
    }

    .faq-item {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: background var(--transition), border-color var(--transition);
    }
    .faq-item.open {
      border-color: rgba(0,229,160,0.3);
      background: var(--surface-hover);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 24px;
      cursor: pointer;
      user-select: none;
      gap: 16px;
    }

    .faq-q-text {
      font-weight: 500;
      font-size: 0.97rem;
      color: var(--text);
      line-height: 1.4;
    }

    .faq-toggle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(128,128,128,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--accent);
      flex-shrink: 0;
      font-weight: 300;
      line-height: 1;
      transition: background var(--transition), transform var(--transition);
    }
    .faq-item.open .faq-toggle {
      background: rgba(0,229,160,0.15);
      transform: rotate(0deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    }
    .faq-a-inner {
      padding: 0 24px 22px;
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.75;
      font-weight: 300;
    }
    .faq-item.open .faq-a { max-height: 400px; }

    /* ── FOOTER ── */
    footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      padding: 40px 24px;
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-muted);
      max-width: 1080px;
      margin: 0 auto;
    }
    footer a { color: var(--accent); text-decoration: none; }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 200;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25d366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 32px rgba(37,211,102,0.45);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
      animation: popIn 0.6s 1s cubic-bezier(0.34,1.56,0.64,1) both;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 40px rgba(37,211,102,0.6);
    }
    .whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

    .whatsapp-pulse {
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: rgba(37,211,102,0.35);
      animation: pulse 2.5s ease infinite;
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.35); opacity: 0; }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes popIn {
      from { opacity: 0; transform: scale(0.5); }
      to   { opacity: 1; transform: scale(1); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ── CONTACT ── */
    #contact {
      padding-top: 100px;
      padding-bottom: 80px;
    }

    .contact-card {
      max-width: 580px;
      margin: 48px auto 0;
      padding: 44px 40px;
      border-radius: var(--radius);
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-intro {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      font-weight: 300;
    }

    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .contact-link {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(128,128,128,0.05);
      text-decoration: none;
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 500;
      transition: border-color var(--transition), background var(--transition), transform 0.2s;
    }
    .contact-link:hover {
      border-color: var(--accent);
      background: rgba(0,229,160,0.07);
      transform: translateX(4px);
    }
    .contact-link-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-link-label { font-size: 0.75rem; color: var(--text-muted); }
    .contact-link-info { display: flex; flex-direction: column; gap: 2px; }

    /* Socials divider + icon row */
    .socials-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-muted);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .socials-divider::before,
    .socials-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .socials-row {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .social-icon-btn {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: rgba(128,128,128,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .social-icon-btn svg { width: 18px; height: 18px; }
    .social-icon-btn:hover { transform: translateY(-3px); }

    .social-icon-btn.instagram:hover { border-color: #e1306c; box-shadow: 0 4px 16px rgba(225,48,108,0.28); background: rgba(225,48,108,0.09); }
    .social-icon-btn.twitter:hover   { border-color: #1d9bf0; box-shadow: 0 4px 16px rgba(29,155,240,0.28);  background: rgba(29,155,240,0.09); }
    .social-icon-btn.linkedin:hover  { border-color: #0a66c2; box-shadow: 0 4px 16px rgba(10,102,194,0.28);  background: rgba(10,102,194,0.09); }
    .social-icon-btn.github:hover    { border-color: #aaa;    box-shadow: 0 4px 16px rgba(150,150,150,0.2);  background: rgba(150,150,150,0.09); }
    .social-icon-btn.behance:hover   { border-color: #1769ff; box-shadow: 0 4px 16px rgba(23,105,255,0.28);  background: rgba(23,105,255,0.09); }
    .social-icon-btn.dribbble:hover  { border-color: #ea4c89; box-shadow: 0 4px 16px rgba(234,76,137,0.28);  background: rgba(234,76,137,0.09); }

    /* ── PORTFOLIO ── */
    #portfolio {
      padding-top: 100px;
      padding-bottom: 80px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 48px;
    }

    .portfolio-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      group: true;
    }

    /* Loom-style preview window */
    .portfolio-preview {
      position: relative;
      width: 100%;
      aspect-ratio: 16/10;
      background: var(--bg2);
      overflow: hidden;
      border-radius: var(--radius) var(--radius) 0 0;
    }

    .portfolio-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .portfolio-card:hover .portfolio-preview img {
      transform: scale(1.04);
    }

    /* Overlay on hover */
    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
      opacity: 0;
      transition: opacity var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .portfolio-card:hover .portfolio-overlay { opacity: 1; }

    .portfolio-view-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: #000;
      font-size: 0.82rem;
      font-weight: 700;
      padding: 9px 18px;
      border-radius: 50px;
      text-decoration: none;
      transform: translateY(8px);
      transition: transform var(--transition);
    }
    .portfolio-card:hover .portfolio-view-btn { transform: translateY(0); }

    /* Loom-style browser chrome bar */
    .browser-bar {
      height: 32px;
      background: rgba(30,32,38,0.95);
      display: flex;
      align-items: center;
      padding: 0 12px;
      gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius) var(--radius) 0 0;
      flex-shrink: 0;
    }
    [data-theme="light"] .browser-bar { background: rgba(220,224,235,0.95); }
    @media (prefers-color-scheme: light) {
      [data-theme="auto"] .browser-bar { background: rgba(220,224,235,0.95); }
    }

    .browser-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .browser-dot.red    { background: #ff5f57; }
    .browser-dot.yellow { background: #febc2e; }
    .browser-dot.green  { background: #28c840; }

    .browser-url {
      flex: 1;
      margin: 0 10px;
      height: 18px;
      background: rgba(255,255,255,0.07);
      border-radius: 4px;
      display: flex;
      align-items: center;
      padding: 0 8px;
      font-size: 0.65rem;
      color: rgba(255,255,255,0.3);
      font-family: monospace;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    [data-theme="light"] .browser-url { background: rgba(0,0,0,0.07); color: rgba(0,0,0,0.35); }

    /* Card info footer */
    .portfolio-info {
      padding: 18px 20px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .portfolio-title {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 0.97rem;
      color: var(--text);
    }

    .portfolio-meta {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 3px;
    }

    .portfolio-tags {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
    }

    /* Featured card spans full width */
    .portfolio-card.featured {
      grid-column: 1 / -1;
    }
    .portfolio-card.featured .portfolio-preview {
      aspect-ratio: 16/7;
    }

    /* ── PORTFOLIO ── */
    #faq { text-align: center; }
    .faq-list { margin: 48px auto 0; }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-bar { padding: 12px 16px; }

      /* Hero */
      #hero { padding-top: 90px; padding-bottom: 48px; }
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
      }
      .hero-visual {
        display: flex;
        width: 130px;
        height: 130px;
        order: -1;
        margin-bottom: 4px;
      }
      .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
      .hero-sub { margin: 12px auto 0; font-size: 0.95rem; }
      .hero-cta { justify-content: center; }
      .hero-badge { margin: 0 auto 16px; }

      /* About */
      #about { padding-top: 60px; padding-bottom: 48px; }
      .about-grid { grid-template-columns: 1fr; gap: 24px; }
      .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
      .stat-card { padding: 18px 14px; }
      .stat-num { font-size: 1.9rem; }

      /* Services */
      #services { padding-top: 60px; padding-bottom: 48px; }
      .services-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
      .service-card { padding: 24px 20px; }

      /* Portfolio */
      #portfolio { padding-top: 60px; padding-bottom: 48px; }
      .portfolio-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
      .portfolio-card.featured { grid-column: auto; }
      .portfolio-card.featured .portfolio-preview { aspect-ratio: 16/10; }

      /* FAQ */
      #faq { padding-top: 60px; padding-bottom: 48px; }
      .faq-list { gap: 8px; }
      .faq-q { padding: 16px 18px; }
      .faq-a-inner { padding: 0 18px 18px; }

      /* Contact */
      #contact { padding-top: 60px; padding-bottom: 60px; }
      .contact-card { padding: 28px 20px; gap: 18px; }
    }

    @media (max-width: 400px) {
      .hero-title { font-size: 2rem; }
      .section-title { font-size: 1.6rem; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .contact-card { padding: 22px 16px; }
      .social-icon-btn { width: 42px; height: 42px; border-radius: 10px; }
      .social-icon-btn svg { width: 16px; height: 16px; }
      nav { top: 10px; }
    }

    /* ── DIVIDER ── */
    .gradient-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
      opacity: 0.25;
      margin: 0 auto;
      max-width: 1080px;
    }