:root {
      --bg: #0a0a0f;
      --bg-elevated: #111118;
      --surface: #16161e;
      --text: #f0f0f5;
      --text-dim: #6b6b7b;
      --accent: #c9b99a;
      --accent-dim: rgba(201, 185, 154, 0.12);
      --border: rgba(201, 185, 154, 0.08);
      --shadow-dark: rgba(0,0,0,0.6);
      --shadow-light: rgba(255,255,255,0.03);
      --wa-green: #25D366;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html {
      scroll-behavior: smooth; font-size: 16px;
      overflow-x: hidden; max-width: 100%;
      -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
    }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Sora', sans-serif;
      overflow-x: hidden; max-width: 100%;
      cursor: none;
    }

    /* CURSOR */
    .cursor {
      position: fixed; width: 12px; height: 12px;
      background: var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      mix-blend-mode: difference;
      transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
      transform: translate(-50%, -50%);
    }
    .cursor.hover {
      width: 48px; height: 48px; background: transparent;
      border: 1px solid var(--accent); mix-blend-mode: normal;
    }

    /* NOISE */
    body::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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; opacity: 0.4;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

    /* PRELOADER */
    .preloader {
      position: fixed; inset: 0; background: var(--bg);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      z-index: 10000;
      transition: opacity 0.8s ease, visibility 0.8s ease;
      gap: 32px;
    }
    .preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
    .preloader-logo {
      width: 120px; height: 120px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 0 40px rgba(201,185,154,0.2);
      animation: logoColorShift 3s ease-in-out infinite;
    }
    .preloader-logo img {
      width: 100%; height: 100%; object-fit: cover;
    }
    @keyframes logoColorShift {
      0%, 100% { filter: hue-rotate(0deg) saturate(1); box-shadow: 0 0 40px rgba(201,185,154,0.2); }
      33% { filter: hue-rotate(30deg) saturate(1.3); box-shadow: 0 0 50px rgba(220,200,150,0.35); }
      66% { filter: hue-rotate(-20deg) saturate(1.2); box-shadow: 0 0 45px rgba(180,160,120,0.3); }
    }
    .preloader-text {
      font-family: 'Space Mono', monospace; font-size: 0.75rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--accent); overflow: hidden;
    }
    .preloader-text span {
      display: inline-block;
      animation: reveal 1.2s cubic-bezier(0.77,0,0.175,1) forwards;
      transform: translateY(100%); opacity: 0;
    }
    @keyframes reveal { to { transform: translateY(0); opacity: 1; } }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      padding: 20px 48px; display: flex;
      justify-content: space-between; align-items: center;
      z-index: 100; opacity: 0; transform: translateY(-20px);
      transition: all 0.6s ease;
      background: linear-gradient(to bottom, rgba(10,10,15,0.95) 0%, transparent 100%);
      backdrop-filter: blur(12px);
    }
    nav.visible { opacity: 1; transform: translateY(0); }
    .nav-brand {
      display: flex; align-items: center; gap: 14px;
    }
    .nav-logo-img {
      width: 40px; height: 40px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(201,185,154,0.15);
      animation: logoColorShift 4s ease-in-out infinite;
    }
    .nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }
    .nav-logo-text {
      font-family: 'Space Mono', monospace; font-size: 0.85rem;
      letter-spacing: 0.15em; color: var(--accent); text-decoration: none;
      font-weight: 700;
    }
    .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 0.8rem; font-weight: 500; color: var(--text-dim);
      text-decoration: none; letter-spacing: 0.05em;
      transition: color 0.3s ease; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--accent);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }
    .nav-social {
      display: flex; gap: 14px; align-items: center;
    }
    .nav-social a {
      width: 36px; height: 36px; border-radius: 50%;
      display: grid; place-items: center;
      background: var(--surface);
      box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
      color: var(--text-dim); transition: all 0.3s ease;
    }
    .nav-social a:hover {
      color: var(--accent);
      box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light), inset 0 0 0 1px var(--border);
      transform: translateY(-2px);
    }

    /* NAV TOGGLE (hamburger, mobile only) */
    .nav-toggle {
      display: none; flex-direction: column; justify-content: center; align-items: center;
      gap: 5px; width: 40px; height: 40px; border-radius: 10px; border: none;
      background: var(--surface); cursor: pointer; flex-shrink: 0;
      box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
    }
    .nav-toggle span {
      display: block; width: 18px; height: 2px; background: var(--accent);
      border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 900px) {
      nav { padding: 14px 20px; flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0; }
      .nav-brand { flex-shrink: 0; }
      .nav-logo-text { font-size: 0.8rem; }
      .nav-toggle { display: flex; }
      .nav-social { display: none; }

      /* Collapsed vertical list menu */
      .nav-links {
        flex-direction: column; align-items: stretch; gap: 0;
        width: 100%; max-width: none;
        max-height: 0; overflow: hidden; opacity: 0;
        order: 10; margin-top: 0;
        transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease, margin-top 0.3s ease;
      }
      .nav-links.active {
        max-height: 60vh; opacity: 1; margin-top: 16px;
        overflow-y: auto;
      }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block; width: 100%; font-size: 0.9rem; padding: 14px 4px;
        background: none; border-radius: 0;
        border-bottom: 1px solid var(--border);
      }
      .nav-links li:last-child a { border-bottom: none; }
    }

    /* SECTIONS */
    section {
      position: relative; width: 100%;
      padding: 100px 48px; max-width: 1400px; margin: 0 auto;
    }
    @media (max-width: 768px) { section { padding: 70px 24px; } }

    .reveal {
      opacity: 0; transform: translateY(60px);
      transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    .section-label {
      font-family: 'Space Mono', monospace; font-size: 0.7rem;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 24px;
      display: flex; align-items: center; gap: 16px;
    }
    .section-label::before { content: ''; width: 32px; height: 1px; background: var(--accent); opacity: 0.4; }
    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700;
      letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 64px; max-width: 700px;
    }

    /* SERVICES */
    .services-section { padding-top: 140px; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
    @media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
      padding: 40px 36px; border-radius: 28px;
      background: var(--surface);
      box-shadow: 16px 16px 32px var(--shadow-dark), -16px -16px 32px var(--shadow-light);
      transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
      position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 20% 20%, var(--accent-dim), transparent 60%);
      opacity: 0; transition: opacity 0.5s ease;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 24px 24px 48px var(--shadow-dark), -24px -24px 48px var(--shadow-light), inset 0 0 0 1px var(--border);
    }
    .service-card:hover::before { opacity: 1; }

    .service-icon-wrap {
      width: 56px; height: 56px; border-radius: 16px;
      background: var(--bg);
      box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
      display: grid; place-items: center;
      margin-bottom: 24px; position: relative; z-index: 1;
    }
    .service-icon-wrap svg { color: var(--accent); }
    .service-tag {
      font-family: 'Space Mono', monospace; font-size: 0.65rem;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); background: var(--accent-dim);
      padding: 4px 12px; border-radius: 20px;
      display: inline-block; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .service-name {
      font-size: 1.3rem; font-weight: 700; margin-bottom: 12px;
      position: relative; z-index: 1;
    }
    .service-desc {
      font-size: 0.9rem; color: var(--text-dim); line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* HERO */
    .hero {
      min-height: 100vh; display: flex; flex-direction: column;
      justify-content: flex-start; padding-top: 180px; padding-bottom: 80px;
      position: relative; overflow: hidden;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 60px; align-items: center; position: relative; z-index: 2;
    }
    .hero-label {
      font-family: 'Space Mono', monospace; font-size: 0.7rem;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 32px;
      display: flex; align-items: center; gap: 16px;
    }
    .hero-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); opacity: 0.5; }
    .hero-title {
      font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 800;
      line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 8px;
      background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      overflow-wrap: break-word; word-break: break-word; max-width: 100%;
    }
    .hero-title span {
      display: block; font-weight: 300;
      font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.02em;
      margin-top: 8px; background: none;
      -webkit-text-fill-color: var(--text-dim); color: var(--text-dim);
    }
    .hero-sub {
      font-size: clamp(1rem, 1.5vw, 1.25rem); color: var(--text-dim);
      line-height: 1.7; max-width: 480px; margin: 40px 0; font-weight: 300;
    }
    .hero-meta {
      display: flex; gap: 32px;
      font-family: 'Space Mono', monospace; font-size: 0.7rem;
      letter-spacing: 0.1em; color: var(--text-dim); text-transform: uppercase;
    }
    .hero-meta span { display: flex; align-items: center; gap: 8px; }
    .hero-meta span::before {
      content: ''; width: 6px; height: 6px;
      background: var(--accent); border-radius: 50%; opacity: 0.6;
    }
    .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
    .photo-frame {
      position: relative; width: 380px; height: 480px;
      border-radius: 200px 200px 20px 20px; overflow: hidden;
      box-shadow: 20px 20px 60px var(--shadow-dark), -20px -20px 60px var(--shadow-light), inset 0 0 0 1px var(--border);
      transition: transform 0.6s ease;
    }
    .photo-frame:hover { transform: translateY(-8px) scale(1.02); }
    .photo-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); transition: filter 0.6s ease; }
    .photo-frame:hover img { filter: grayscale(60%) contrast(1.05); }
    .photo-glow {
      position: absolute; width: 300px; height: 300px;
      background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      pointer-events: none; z-index: -1;
      animation: pulseGlow 4s ease-in-out infinite;
    }
    @keyframes pulseGlow {
      0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
      50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
    }
    .social-hero { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
    .social-hero a {
      width: 48px; height: 48px; border-radius: 50%;
      display: grid; place-items: center; background: var(--surface);
      box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
      color: var(--text-dim); transition: all 0.3s ease; text-decoration: none;
    }
    .social-hero a:hover {
      color: var(--accent);
      box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light), inset 0 0 0 1px var(--border);
      transform: translateY(-3px);
    }

    @media (max-width: 1024px) {
      .hero { padding-top: 140px; padding-bottom: 60px; min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
      .hero-label { justify-content: center; }
      .hero-sub { margin: 32px auto; }
      .hero-meta { justify-content: center; flex-wrap: wrap; }
      .social-hero { justify-content: center; }
      .photo-frame { width: min(300px, 90vw); max-width: 100%; height: auto; aspect-ratio: 4 / 5; margin: 0 auto; }
      .hero-visual { order: 2; margin-top: 36px; margin-bottom: 0; width: 100%; display: flex; justify-content: center; min-height: 0; }
    }

    @media (max-width: 420px) {
      .hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
      .hero-title span { font-size: clamp(1.5rem, 7vw, 2rem); }
      .parallax-img { transform: none !important; }
    }

    /* MARQUEE */
    .marquee { overflow: hidden; white-space: nowrap; padding: 40px 0; opacity: 0.4; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 80px 0; }
    .marquee-inner { display: inline-block; animation: marquee 20s linear infinite; }
    .marquee span { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; letter-spacing: -0.03em; color: transparent; -webkit-text-stroke: 1px var(--text-dim); padding: 0 40px; }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ABOUT */
    .about-text { font-size: clamp(1.25rem, 2.5vw, 2rem); line-height: 1.6; font-weight: 300; color: var(--text-dim); max-width: 900px; }
    .about-text strong { color: var(--text); font-weight: 600; }
    .about-text .highlight { color: var(--accent); font-weight: 500; }
    .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 80px; }
    .stat-item {
      padding: 32px; border-radius: 24px; background: var(--surface);
      box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
      transition: transform 0.4s ease;
    }
    .stat-item:hover { transform: translateY(-6px); }
    .stat-num { font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
    .stat-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
    @media (max-width: 768px) { .about-stats { grid-template-columns: 1fr; } }

    /* EXPERIENCE */
    .timeline { position: relative; padding-left: 40px; }
    .timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(to bottom, var(--accent), transparent); opacity: 0.3; }
    .timeline-item { position: relative; padding-bottom: 64px; }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-item::before { content: ''; position: absolute; left: -44px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--bg); border: 2px solid var(--accent); box-shadow: 0 0 12px var(--accent-dim); }
    .timeline-date { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 8px; }
    .timeline-role { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
    .timeline-company { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 16px; }
    .timeline-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; max-width: 600px; }

    /* PROJECTS */
    .projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    @media (max-width: 768px) { .projects-grid { grid-template-columns: 1fr; } }
    .project-card {
      position: relative; padding: 40px; border-radius: 28px;
      background: var(--surface);
      box-shadow: 16px 16px 32px var(--shadow-dark), -16px -16px 32px var(--shadow-light);
      overflow: hidden; transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
      text-decoration: none; color: inherit; display: block;
    }
    .project-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, var(--accent-dim), transparent 60%); opacity: 0; transition: opacity 0.5s ease; }
    .project-card:hover { transform: translateY(-8px); box-shadow: 24px 24px 48px var(--shadow-dark), -24px -24px 48px var(--shadow-light), inset 0 0 0 1px var(--border); }
    .project-card:hover::before { opacity: 1; }
    .project-tag { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 20px; position: relative; z-index: 1; }
    .project-name { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
    .project-desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; position: relative; z-index: 1; }
    .project-stack { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
    .project-stack span { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: var(--text-dim); padding: 4px 10px; border-radius: 6px; background: var(--bg); box-shadow: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light); }
    .project-arrow { position: absolute; top: 40px; right: 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--bg); box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light); display: grid; place-items: center; color: var(--text-dim); transition: all 0.3s ease; z-index: 1; }
    .project-card:hover .project-arrow { background: var(--accent); color: var(--bg); transform: rotate(-45deg); }

    /* SKILLS */
    .skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 1024px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .skills-grid { grid-template-columns: 1fr; } }
    .skill-category { padding: 32px; border-radius: 24px; background: var(--surface); box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light); transition: transform 0.4s ease; }
    .skill-category:hover { transform: translateY(-4px); }
    .skill-cat-title { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
    .skill-cat-title::before { content: ''; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); opacity: 0.6; }
    .skill-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .skill-list li { font-size: 0.9rem; color: var(--text-dim); padding: 8px 12px; border-radius: 8px; background: var(--bg); box-shadow: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light); transition: all 0.3s ease; }
    .skill-list li:hover { color: var(--text); box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light); padding-left: 16px; }

    /* CONTACT */
    .contact-section { text-align: center; padding-bottom: 60px; }
    .contact-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 24px; background: linear-gradient(135deg, #fff 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .contact-sub { font-size: 1.1rem; color: var(--text-dim); max-width: 500px; margin: 0 auto 64px; line-height: 1.7; font-weight: 300; }
    .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
    @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
    .contact-card { padding: 32px 24px; border-radius: 20px; background: var(--surface); box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light); text-decoration: none; color: inherit; transition: all 0.4s ease; display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .contact-card:hover { transform: translateY(-6px); box-shadow: 16px 16px 32px var(--shadow-dark), -16px -16px 32px var(--shadow-light), inset 0 0 0 1px var(--border); }
    .contact-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--bg); box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light); display: grid; place-items: center; color: var(--accent); margin-bottom: 8px; }
    .contact-label { font-family: 'Space Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
    .contact-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }

    footer { text-align: center; padding: 40px; border-top: 1px solid var(--border); font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-dim); }
    footer span { color: var(--accent); }
    .parallax-img { will-change: transform; transition: transform 0.1s linear; }

    /* FAQ (AEO & GEO OPTIMIZATION) */
    .faq-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      border-radius: 20px;
      background: var(--surface);
      box-shadow: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
      overflow: hidden;
      transition: all 0.4s ease;
      border: 1px solid transparent;
    }
    .faq-item:hover {
      box-shadow: 14px 14px 28px var(--shadow-dark), -14px -14px 28px var(--shadow-light);
      border-color: var(--border);
    }
    .faq-question {
      width: 100%;
      padding: 24px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: none;
      border: none;
      color: var(--text);
      font-family: 'Sora', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      gap: 16px;
      transition: color 0.3s ease;
    }
    .faq-question:hover {
      color: var(--accent);
    }
    .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--bg);
      box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
      display: grid;
      place-items: center;
      color: var(--accent);
      flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
    }
    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      background: var(--accent);
      color: var(--bg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 28px;
      color: var(--text-dim);
      font-size: 0.95rem;
      line-height: 1.7;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 28px 24px 28px;
    }