    /* ALL CSS REMAINS EXACTLY THE SAME AS BEFORE */
    html, body { margin: 0; padding: 0; }
header { top: 0; }
:root {
      --bg1: #120610;
      --bg2: #3c0920;
      --card: #ffffff;
      --ink: #0f1220;
      --muted: #5d6176;
      --pink: #ff2b78;
      --pink2: #ff6bb0;
      --gold: #f5c542;
      --cream: #fff6f8;
      --shadow: 0 18px 40px rgba(0,0,0,.30);
      --r: 22px;
      --transition: all 0.3s ease;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }
    
    body {
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      line-height: 1.6;
      color: var(--ink);
      background:
        radial-gradient(900px 650px at 10% 10%, rgba(255,43,120,.33), transparent 55%),
        radial-gradient(900px 650px at 90% 20%, rgba(245,197,66,.18), transparent 60%),
        linear-gradient(160deg, var(--bg1), var(--bg2));
      background-attachment: fixed;
    }
    
    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1rem 2rem;
      background: rgba(18, 6, 16, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 1.5rem;
      color: white;
      text-decoration: none;
    }
    
    .logo span {
      color: var(--gold);
    }
    
    .logo-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--pink);
    }
    
    .desktop-nav {
      display: flex;
      gap: 2rem;
    }
    
    .desktop-nav a {
      color: white;
      text-decoration: none;
      font-weight: 700;
      transition: var(--transition);
      position: relative;
    }
    
    .desktop-nav a:hover {
      color: var(--pink2);
    }
    
    .desktop-nav a:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--pink);
      transition: var(--transition);
    }
    
    .desktop-nav a:hover:after {
      width: 100%;
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    .mobile-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(18, 6, 16, 0.98);
      backdrop-filter: blur(10px);
      padding: 1rem 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    
    .mobile-nav.active {
      display: block;
    }
    
    .mobile-nav a {
      display: block;
      color: white;
      text-decoration: none;
      padding: 0.8rem 2rem;
      font-weight: 700;
      transition: var(--transition);
    }
    
    .mobile-nav a:hover {
      background: rgba(255,43,120,.15);
      color: var(--pink2);
    }
    
    /* Hero Section */
    .hero {
      padding: 10rem 2rem 6rem;
      text-align: center;
      color: white;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      font-weight: 1000;
      text-shadow: 0 10px 28px rgba(0,0,0,.28);
    }
    
    .hero p {
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      max-width: 800px;
      margin: 0 auto 2rem;
      color: rgba(255,255,255,.92);
    }
    
    .timer-container {
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.5rem;
      border-radius: 20px;
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      font-weight: 900;
      margin-bottom: 2rem;
    }
    
    .timer-label {
      font-size: 1rem;
    }
    
    .timer {
      font-variant-numeric: tabular-nums;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      background: rgba(245,197,66,.18);
      border: 1px solid rgba(245,197,66,.28);
      color: #fff;
      white-space: nowrap;
      font-size: 1.2rem;
    }
    
    /* Features Section */
    .features {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .section-title {
      text-align: center;
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 3rem;
      color: white;
      font-weight: 900;
    }
    
    .section-title span {
      color: var(--gold);
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .feature-card {
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
      border-radius: var(--r);
      padding: 2rem;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.18);
      transition: var(--transition);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0,0,0,.25);
    }
    
    .feature-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--pink);
    }
    
    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--ink);
    }
    
    .feature-card p {
      color: var(--muted);
      margin-bottom: 1.5rem;
    }
    
    /* Websites Showcase */
    .websites {
      padding: 4rem 2rem;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .websites-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 2rem;
    }
    
    .website-card {
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
      border-radius: var(--r);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.18);
      transition: var(--transition);
      position: relative;
    }
    
    .website-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0,0,0,.25);
    }
    
    .website-preview {
      height: 240px;
      background-size: cover;
      background-position: top center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
    }
    
    .website-preview.coming-soon {
      background: linear-gradient(135deg, rgba(255,43,120,.12), rgba(245,197,66,.12));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--pink);
      font-size: 3rem;
    }
    
    .coming-soon-label {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--pink);
      color: white;
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 900;
      box-shadow: 0 5px 15px rgba(255,43,120,.3);
    }
    
    .exclusive-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: linear-gradient(135deg, var(--gold), #ff8a00);
      color: #140610;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 1000;
      box-shadow: 0 5px 15px rgba(245,197,66,.4);
      z-index: 2;
    }
    
    .sold-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(18, 6, 16, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      color: white;
      font-size: 2rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 3px;
      border-radius: var(--r);
    }
    
    .website-info {
      padding: 1.5rem;
    }
    
    .website-info h3 {
      font-size: 1.4rem;
      margin-bottom: 0.5rem;
      color: var(--ink);
    }
    
    .website-info p {
      color: var(--muted);
      margin-bottom: 1.5rem;
      min-height: 60px;
    }
    
    .website-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .preview-btn {
      padding: 12px 16px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(135deg, rgba(255,43,120,.12), rgba(245,197,66,.12));
      border: 1px solid rgba(255,43,120,.20);
      color: #111326;
      font-weight: 900;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    
    .preview-btn:hover {
      background: linear-gradient(135deg, rgba(255,43,120,.18), rgba(245,197,66,.18));
      transform: translateY(-2px);
    }
    
    .preview-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    
    .escrow-btn {
      padding: 12px 16px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(135deg, rgba(245,197,66,.96), rgba(255,43,120,.92));
      color: #140610;
      font-weight: 900;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    
    .escrow-btn:hover {
      filter: saturate(1.2) brightness(1.05);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(245,197,66,.3);
    }
    
    .escrow-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      background: #ccc;
      color: #666;
    }
    
    .escrow-btn.exclusive {
      background: linear-gradient(135deg, #111326, #4b0a25);
      color: white;
    }
    
    .escrow-btn.exclusive:hover {
      background: linear-gradient(135deg, #1a1f3a, #5c0c2e);
    }
    
    .load-more-container {
      text-align: center;
      margin-top: 3rem;
    }
    
    .load-more-btn {
      padding: 14px 28px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(135deg, rgba(255,43,120,.15), rgba(245,197,66,.15));
      border: 1px solid rgba(255,43,120,.25);
      color: white;
      font-weight: 900;
      cursor: pointer;
      transition: var(--transition);
      font-size: 1.1rem;
    }
    
    .load-more-btn:hover {
      background: linear-gradient(135deg, rgba(255,43,120,.25), rgba(245,197,66,.25));
      transform: translateY(-3px);
    }
    
    /* Custom Website Form */
    .custom-website {
      padding: 4rem 2rem;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .custom-form-container {
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
      border-radius: var(--r);
      padding: 2.5rem;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.18);
    }
    
    .custom-form-container h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--ink);
      text-align: center;
    }
    
    .custom-form-container > p {
      text-align: center;
      color: var(--muted);
      margin-bottom: 2rem;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 700;
      color: var(--ink);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      border-radius: 12px;
      border: 1px solid rgba(17,19,38,.15);
      background: rgba(255,255,255,.95);
      font-family: inherit;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--pink);
      box-shadow: 0 0 0 3px rgba(255,43,120,.15);
    }
    
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    .submit-custom-btn {
      width: 100%;
      padding: 16px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(135deg, #111326, #4b0a25);
      color: white;
      font-weight: 900;
      font-size: 1.1rem;
      cursor: pointer;
      transition: var(--transition);
      margin-top: 1rem;
    }
    
    .submit-custom-btn:hover {
      background: linear-gradient(135deg, #1a1f3a, #5c0c2e);
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(0,0,0,.2);
    }
    
    /* Testimonials */
    .testimonials {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    
    .testimonial-card {
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
      border-radius: var(--r);
      padding: 2rem;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.18);
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 1.5rem;
      color: var(--ink);
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--pink), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
    }
    
    .author-info h4 {
      font-size: 1.1rem;
      margin-bottom: 0.2rem;
    }
    
    .author-info p {
      font-size: 0.9rem;
      color: var(--muted);
    }
    
    /* FAQ Section */
    .faq {
      padding: 4rem 2rem;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
      border-radius: var(--r);
      padding: 1.5rem;
      margin-bottom: 1rem;
      box-shadow: 0 10px 20px rgba(0,0,0,.05);
      border: 1px solid rgba(255,255,255,.18);
    }
    
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    
    .faq-question h3 {
      font-size: 1.2rem;
      color: var(--ink);
    }
    
    .faq-toggle {
      font-size: 1.5rem;
      color: var(--pink);
      transition: var(--transition);
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      color: var(--muted);
      margin-top: 0;
    }
    
    .faq-answer p {
      padding-top: 1rem;
    }
    
    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }
    
    /* Footer */
    footer {
      background: rgba(18, 6, 16, 0.98);
      color: white;
      padding: 4rem 2rem 2rem;
      margin-top: 4rem;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }
    
    .footer-column h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      color: var(--gold);
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column li {
      margin-bottom: 1rem;
    }
    
    .footer-column a {
      color: rgba(255,255,255,.85);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-column a:hover {
      color: var(--pink2);
      padding-left: 5px;
    }
    
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .social-link:hover {
      background: var(--pink);
      transform: translateY(-3px);
    }
    
    .escrow-banner {
      text-align: center;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.7);
      font-size: 0.9rem;
    }
    
    /* Toast notification */
    .toast {
      position: fixed;
      left: 50%;
      bottom: 16px;
      transform: translateX(-50%);
      background: rgba(15,18,32,.92);
      color: #fff;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 950;
      font-size: 14px;
      display: none;
      z-index: 9999;
      box-shadow: 0 10px 25px rgba(0,0,0,.2);
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      header {
        padding: 1rem;
      }
      
      .desktop-nav {
        display: none;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      .hero {
        padding: 8rem 1rem 4rem;
      }
      
      .features, .websites, .custom-website, .testimonials, .faq {
        padding: 3rem 1rem;
      }
      
      .timer-container {
        flex-direction: column;
        gap: 0.5rem;
      }
      
      .websites-container {
        grid-template-columns: 1fr;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
      }
    }
    
  /* Uses your burgundy vibe (no blue). Matches your existing site. */
  .ourwork-swipe{
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .ourwork-sub{
    text-align:center;
    color: rgba(255,255,255,.85);
    max-width: 820px;
    margin: -1.2rem auto 1.6rem;
    font-size: 1.05rem;
  }

  .ourwork-categories{
    display:flex;
    gap:.6rem;
    flex-wrap:wrap;
    justify-content:center;
    margin: 0 auto 1.4rem;
  }
  .ow-cat{
    appearance:none;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.18);
    color:#fff;
    padding: .55rem .9rem;
    border-radius: 999px;
    font-weight: 900;
    cursor:pointer;
    transition: .2s ease;
    backdrop-filter: blur(10px);
  }
  .ow-cat:hover{ transform: translateY(-1px); }
  .ow-cat.active{
    background: linear-gradient(135deg, rgba(245,197,66,.95), rgba(255,43,120,.85));
    color: #140610;
    border-color: rgba(245,197,66,.35);
  }

  .ow-wrap{
    position: relative;
    max-width: 460px;
    margin: 0 auto;
  }

  .ow-hint{
    text-align:center;
    color: rgba(255,255,255,.8);
    font-weight: 900;
    font-size: .95rem;
    margin-bottom: .8rem;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:.6rem;
  }

  .ow-card-stage{
    position: relative;
    height: 640px; /* portrait */
  }

  .ow-card{
    position:absolute;
    inset:0;
    border-radius: 26px;
    overflow:hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
    box-shadow: 0 25px 50px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.18);
    user-select:none;
    touch-action: pan-y; /* IMPORTANT for mobile swipe */
    will-change: transform;
  }

  .ow-media{
    height: 64%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
  }

  .ow-badge{
    position:absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, rgba(245,197,66,.95), rgba(255,43,120,.85));
    color:#140610;
    font-weight: 1000;
    font-size:.72rem;
    padding: 7px 12px;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0,0,0,.25);
  }

  .ow-label{
    position:absolute;
    top: 14px;
    right: 14px;
    background: rgba(17,19,38,.85);
    color:#fff;
    font-weight: 900;
    font-size:.72rem;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
  }

  .ow-info{
    padding: 1.25rem 1.25rem 1.35rem;
    height: 36%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }

  .ow-title{
    font-size: 1.35rem;
    font-weight: 1000;
    color:#140610;
    line-height:1.15;
    margin-bottom: .35rem;
  }
  .ow-desc{
    color:#3b3f54;
    font-weight: 700;
    line-height:1.45;
    font-size: .98rem;
  }

  .ow-meta{
    display:flex;
    gap:.55rem;
    flex-wrap:wrap;
    margin-top: .9rem;
  }
  .ow-chip{
    font-size:.78rem;
    font-weight: 900;
    color:#140610;
    background: rgba(255,43,120,.10);
    border: 1px solid rgba(255,43,120,.20);
    padding: .35rem .6rem;
    border-radius: 999px;
  }
  .ow-chip.gold{
    background: rgba(245,197,66,.14);
    border-color: rgba(245,197,66,.25);
  }

  .ow-indicator{
    position:absolute;
    top: 58px;
    padding: .6rem 1rem;
    border-radius: 999px;
    font-weight: 1000;
    color:#fff;
    opacity:0;
    transition:.18s ease;
    z-index: 10;
    display:flex;
    gap:.5rem;
    align-items:center;
  }
  .ow-nope{ left: 10px; background: rgba(255,43,120,.95); }
  .ow-like{ right: 10px; background: rgba(46,204,113,.95); }

  .ow-actions{
    display:flex;
    justify-content:center;
    gap: 1.4rem;
    margin-top: 1.2rem;
  }
  .ow-btn{
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border:none;
    cursor:pointer;
    font-size: 1.45rem;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
    transition:.2s ease;
  }
  .ow-btn:hover{ transform: scale(1.12); }
  .ow-reject{ background: linear-gradient(135deg, #a0003a, #ff2b78); color:#fff; }
  .ow-open{
    width: 76px; height: 76px;
    background: linear-gradient(135deg, rgba(245,197,66,.98), #ff9f1a);
    color:#140610;
    font-size: 1.75rem;
  }
  .ow-save{ background: linear-gradient(135deg, #2ecc71, #1fa463); color:#fff; }

  .ow-mini-note{
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: rgba(15,18,32,.92);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
  }

  @media (max-width: 520px){
    .ow-card-stage{ height: 600px; }
  }