 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #0a0a0f;
      --bg2: #111118;
      --bg3: #16161f;
      --card: #1a1a24;
      --border: rgba(255,255,255,0.07);
      --accent: #7c3aed;
      --accent2: #06b6d4;
      --accent3: #f59e0b;
      --text: #f0f0f5;
      --muted: #6b6b80;
      --radius: 16px;
      --font-head: 'Syne', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NOISE TEXTURE ─── */
    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: 0;
    }

    /* ─── HEADER ─── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      padding: 0 5%;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10,10,15,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      text-decoration: none;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .logo-icon {
      width: 32px; height: 32px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .logo span { color: var(--accent2); }

    nav { display: flex; gap: 2px; align-items: center; }
    nav a {
      padding: 7px 14px;
      color: var(--muted);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: 8px;
      transition: all 0.2s;
    }
    nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 20px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      text-decoration: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #6d28d9);
      color: #fff;
      box-shadow: 0 0 20px rgba(124,58,237,0.4);
    }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(124,58,237,0.6); }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
    }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      padding: 120px 5% 100px;
      text-align: center;
      overflow: hidden;
    }
    .hero-glow {
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 700px; height: 500px;
      background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 14px;
      background: rgba(124,58,237,0.12);
      border: 1px solid rgba(124,58,237,0.3);
      border-radius: 100px;
      font-size: 0.8rem;
      color: #a78bfa;
      margin-bottom: 28px;
      font-weight: 500;
    }
    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -2px;
      max-width: 800px;
      margin: 0 auto 24px;
    }
    .hero h1 .gradient-text {
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 40px;
      font-weight: 300;
    }
    .hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 72px;
      padding-top: 48px;
      border-top: 1px solid var(--border);
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--text), var(--muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

    /* ─── SECTIONS ─── */
    section { position: relative; }
    .section-label {
      display: inline-block;
      padding: 4px 12px;
      background: rgba(6,182,212,0.1);
      border: 1px solid rgba(6,182,212,0.25);
      border-radius: 100px;
      font-size: 0.75rem;
      color: var(--accent2);
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .section-sub {
      color: var(--muted);
      font-size: 1rem;
      max-width: 520px;
      font-weight: 300;
    }
    .section-head { margin-bottom: 56px; }
    .container { padding: 96px 5%; }

    /* ─── TOOLS GRID ─── */
    .tools-section { background: var(--bg2); }
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .tool-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      cursor: pointer;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }
    .tool-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent, rgba(255,255,255,0.02));
      opacity: 0;
      transition: opacity 0.25s;
    }
    .tool-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
    .tool-card:hover::before { opacity: 1; }
    .tool-card.active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 20px 40px rgba(124,58,237,0.2); }

    .tool-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      margin-bottom: 16px;
    }
    .tool-name {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .tool-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
    .tool-tag {
      display: inline-block;
      margin-top: 12px;
      padding: 3px 10px;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      border: 1px solid;
    }

    /* ─── PREVIEW AREA ─── */
    .preview-section { background: var(--bg); }
    .preview-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: start;
    }
    @media (max-width: 900px) { .preview-layout { grid-template-columns: 1fr; } }

    .input-panel {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
    }
    .input-panel h3 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .form-group { margin-bottom: 16px; }
    .form-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; margin-bottom: 6px; display: block; }
    .form-input, .form-textarea {
      width: 100%;
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 14px;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.9rem;
      transition: border-color 0.2s;
      resize: none;
    }
    .form-input:focus, .form-textarea:focus {
      outline: none;
      border-color: var(--accent);
    }
    .form-textarea { height: 90px; }
    .char-count { font-size: 0.75rem; color: var(--muted); text-align: right; margin-top: 4px; }
    .char-count.warn { color: var(--accent3); }
    .char-count.over { color: #ef4444; }

    .platform-tabs {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .ptab {
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--muted);
      transition: all 0.2s;
    }
    .ptab.active { background: var(--accent); border-color: var(--accent); color: #fff; }
    .ptab:hover:not(.active) { border-color: rgba(255,255,255,0.2); color: var(--text); }

    .preview-panel {
      position: sticky;
      top: 88px;
    }
    .preview-frame {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .preview-header {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .preview-platform-name {
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .preview-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
    .preview-body { padding: 20px; }

    /* Post Mockups */
    .post-mockup { font-size: 0.88rem; }

    /* Twitter/X */
    .x-post {
      display: flex;
      gap: 12px;
    }
    .x-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1d9bf0, #0c7abf);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 16px; color: #fff;
    }
    .x-content { flex: 1; }
    .x-name-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
    .x-name { font-weight: 700; font-size: 0.92rem; }
    .x-handle { color: var(--muted); font-size: 0.82rem; }
    .x-verified { color: #1d9bf0; font-size: 14px; }
    .x-text { line-height: 1.5; margin-bottom: 12px; color: var(--text); word-break: break-word; }
    .x-image { width: 100%; border-radius: 12px; background: var(--bg3); height: 160px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; margin-bottom: 12px; overflow: hidden; }
    .x-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
    .x-actions { display: flex; gap: 20px; color: var(--muted); font-size: 0.8rem; }
    .x-action { display: flex; align-items: center; gap: 4px; cursor: pointer; transition: color 0.2s; }
    .x-action:hover { color: #1d9bf0; }

    /* Facebook */
    .fb-post { background: var(--bg3); border-radius: 12px; overflow: hidden; }
    .fb-header { padding: 14px; display: flex; gap: 10px; align-items: center; }
    .fb-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #1877f2, #0a5bc5); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
    .fb-meta .fb-name { font-weight: 700; font-size: 0.9rem; }
    .fb-meta .fb-time { font-size: 0.75rem; color: var(--muted); }
    .fb-text { padding: 0 14px 12px; line-height: 1.5; color: var(--text); word-break: break-word; }
    .fb-image { width: 100%; height: 160px; background: var(--bg); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; overflow: hidden; }
    .fb-image img { width: 100%; height: 100%; object-fit: cover; }
    .fb-actions { padding: 8px 14px; display: flex; gap: 4px; border-top: 1px solid var(--border); }
    .fb-action { flex: 1; padding: 6px; text-align: center; border-radius: 6px; font-size: 0.8rem; color: var(--muted); cursor: pointer; transition: background 0.2s; }
    .fb-action:hover { background: var(--bg2); }

    /* Instagram */
    .ig-post {}
    .ig-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .ig-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
    .ig-name { font-weight: 700; font-size: 0.9rem; }
    .ig-image { width: 100%; height: 200px; background: var(--bg3); border-radius: 12px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; overflow: hidden; }
    .ig-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
    .ig-actions { display: flex; gap: 14px; margin-bottom: 8px; color: var(--muted); font-size: 0.85rem; }
    .ig-likes { font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
    .ig-caption { font-size: 0.85rem; line-height: 1.5; color: var(--text); word-break: break-word; }
    .ig-caption strong { font-weight: 700; }

    /* LinkedIn */
    .li-post {}
    .li-header { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
    .li-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #0a66c2, #0854a0); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
    .li-info .li-name { font-weight: 700; font-size: 0.9rem; }
    .li-info .li-title { font-size: 0.75rem; color: var(--muted); }
    .li-text { line-height: 1.6; color: var(--text); word-break: break-word; margin-bottom: 12px; }
    .li-image { width: 100%; height: 150px; background: var(--bg3); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; margin-bottom: 12px; overflow: hidden; }
    .li-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
    .li-actions { display: flex; gap: 8px; flex-wrap: wrap; }
    .li-action { padding: 5px 10px; border-radius: 100px; font-size: 0.78rem; color: var(--muted); border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
    .li-action:hover { border-color: #0a66c2; color: #0a66c2; }

    /* YouTube */
    .yt-post {}
    .yt-thumb { width: 100%; height: 170px; background: var(--bg3); border-radius: 12px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; position: relative; overflow: hidden; }
    .yt-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
    .yt-play { position: absolute; width: 48px; height: 48px; background: rgba(255,0,0,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; }
    .yt-title { font-weight: 700; font-size: 0.9rem; line-height: 1.3; margin-bottom: 6px; }
    .yt-meta { font-size: 0.78rem; color: var(--muted); }

    /* TikTok */
    .tt-post { background: #000; border-radius: 12px; overflow: hidden; }
    .tt-video { width: 100%; height: 200px; background: linear-gradient(180deg, #1a1a2e, #16213e); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; position: relative; overflow: hidden; }
    .tt-video img { width: 100%; height: 100%; object-fit: cover; }
    .tt-overlay { position: absolute; inset: 0; padding: 12px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(transparent, rgba(0,0,0,0.7)); }
    .tt-username { color: #fff; font-weight: 700; font-size: 0.85rem; margin-bottom: 4px; }
    .tt-caption { color: rgba(255,255,255,0.9); font-size: 0.8rem; line-height: 1.4; }
    .tt-actions-side { position: absolute; right: 10px; bottom: 10px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
    .tt-action-btn { display: flex; flex-direction: column; align-items: center; gap: 2px; color: #fff; font-size: 0.65rem; }
    .tt-action-btn span { font-size: 20px; }

    /* Pinterest */
    .pin-post { background: var(--bg3); border-radius: 12px; overflow: hidden; }
    .pin-image { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; overflow: hidden; }
    .pin-image img { width: 100%; height: 100%; object-fit: cover; }
    .pin-content { padding: 14px; }
    .pin-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
    .pin-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

    /* WhatsApp */
    .wa-post { background: #075e54; border-radius: 12px; padding: 10px; }
    .wa-bubble { background: #128c7e; border-radius: 0 12px 12px 12px; padding: 10px 12px; max-width: 85%; }
    .wa-text { color: #fff; font-size: 0.88rem; line-height: 1.5; word-break: break-word; }
    .wa-time { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-align: right; margin-top: 4px; }
    .wa-link-preview { background: rgba(0,0,0,0.2); border-left: 3px solid #25d366; padding: 8px; border-radius: 4px; margin-top: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.9); }

    /* Reddit */
    .rd-post {}
    .rd-header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.78rem; color: var(--muted); }
    .rd-sub { color: var(--text); font-weight: 700; }
    .rd-title { font-weight: 700; font-size: 0.95rem; line-height: 1.3; margin-bottom: 10px; }
    .rd-content { font-size: 0.85rem; color: var(--muted); line-height: 1.5; margin-bottom: 12px; word-break: break-word; }
    .rd-image { width: 100%; height: 150px; background: var(--bg3); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.8rem; margin-bottom: 12px; overflow: hidden; }
    .rd-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
    .rd-actions { display: flex; gap: 10px; }
    .rd-action { padding: 5px 10px; background: var(--bg3); border-radius: 100px; font-size: 0.78rem; color: var(--muted); cursor: pointer; border: none; transition: background 0.2s; }
    .rd-action:hover { background: var(--bg2); color: var(--text); }

    /* Snapchat */
    .sc-post { background: #fffc00; border-radius: 12px; overflow: hidden; }
    .sc-image { width: 100%; height: 200px; background: #f5f200; display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,0.4); font-size: 0.8rem; overflow: hidden; }
    .sc-image img { width: 100%; height: 100%; object-fit: cover; }
    .sc-bottom { padding: 10px 14px; background: rgba(0,0,0,0.85); }
    .sc-text { color: #fff; font-size: 0.88rem; font-weight: 500; }
    .sc-username { color: #fffc00; font-size: 0.78rem; margin-top: 2px; }

    /* ─── FEATURES ─── */
    .features-section { background: var(--bg3); }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 24px;
    }
    .feature-card {
      padding: 28px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: all 0.25s;
    }
    .feature-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
    .feature-icon { font-size: 28px; margin-bottom: 14px; }
    .feature-title {
      font-family: var(--font-head);
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .feature-text { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* ─── HOW IT WORKS ─── */
    .how-section { background: var(--bg); }
    .steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto; }
    .step {
      display: flex;
      gap: 24px;
      position: relative;
    }
    .step:not(:last-child) .step-line {
      position: absolute;
      left: 19px;
      top: 44px;
      width: 2px;
      height: calc(100% - 8px);
      background: linear-gradient(var(--accent), transparent);
    }
    .step-num {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), #6d28d9);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 0.9rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .step-content { padding-bottom: 40px; }
    .step-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; margin-top: 8px; }
    .step-text { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

    /* ─── FAQ ─── */
    .faq-section { background: var(--bg2); }
    .faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-q {
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background 0.2s;
      user-select: none;
    }
    .faq-q:hover { background: rgba(255,255,255,0.03); }
    .faq-chevron { font-size: 18px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.2s;
      padding: 0 20px;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

    /* ─── CTA SECTION ─── */
    .cta-section {
      background: var(--bg3);
      text-align: center;
      padding: 96px 5%;
      position: relative;
      overflow: hidden;
    }
    .cta-glow {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 400px;
      background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-section h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 16px;
      position: relative;
    }
    .cta-section p { color: var(--muted); max-width: 480px; margin: 0 auto 36px; position: relative; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 64px 5% 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    @media (max-width: 800px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      nav { display: none; }
    }
    @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

    .footer-brand .logo { margin-bottom: 12px; }
    .footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; max-width: 260px; }
    .footer-socials { display: flex; gap: 10px; margin-top: 20px; }
    .social-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      text-decoration: none;
      font-size: 15px;
      transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--accent); color: var(--accent); }

    .footer-widget h4 {
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text);
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--text); }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: gap;
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* ─── IMAGE UPLOAD ─── */
    .upload-area {
      border: 2px dashed var(--border);
      border-radius: 10px;
      padding: 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      margin-bottom: 16px;
    }
    .upload-area:hover { border-color: var(--accent); background: rgba(124,58,237,0.05); }
    .upload-area p { font-size: 0.82rem; color: var(--muted); }
    .upload-area span { font-size: 24px; display: block; margin-bottom: 6px; }
    #imageInput { display: none; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate {
      opacity: 0;
      animation: fadeUp 0.6s ease forwards;
    }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }

    /* ─── RESPONSIVE ─── */
    /* ─── IMPROVED RESPONSIVE NAVIGATION ─── */
@media (max-width: 800px) {
    /* Hide desktop nav by default on mobile, but allow a 'show' class */
    nav { 
        display: none; 
        position: absolute;
        top: 68px; /* Height of your header */
        left: 0;
        width: 100%;
        background: var(--bg2);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        gap: 10px;
    }

    /* This class will be toggled via JavaScript */
    nav.active {
        display: flex;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    
    /* Show the hamburger button (added in HTML step) */
    .menu-toggle {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        color: var(--text);
        cursor: pointer;
    }
}

/* Hide toggle button on desktop */
@media (min-width: 801px) {
    .menu-toggle {
        display: none;
    }
}
