/* ===================== HEADER WRAPPER ===================== */
/* ===================== HEADER WRAPPER ===================== */ 
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;

  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);

  border-bottom: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  z-index: 10000;
}


/* Layout */
.header-inner {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ❌ REMOVED your old display:none mobile block
   because it was killing the navbar */

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 54px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;

  background: linear-gradient(
    90deg,
    #0ea5e9,
    #38bdf8,
    #22d3ee,
    #818cf8,
    #c084fc,
    #f472b6,
    #fb7185
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientFlow 6s ease-in-out infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===================== DESKTOP NAV ===================== */
.top-nav {
  display: flex;
  gap: 24px;
}

.top-nav a {
  color: #e5e7eb;
  font-size: 14px;
  text-decoration: none;
  transition: 0.25s ease;
}

.top-nav a:hover {
  color: #0ea5e9;
}

/* ===================== MOBILE HAMBURGER ===================== */
.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 12px;
  font-size: 22px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
}

/* ===================== MOBILE MENU ===================== */
@media (max-width: 768px) {

 

  .menu-toggle {
    display: block;
  }

  .top-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;

    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(14px);

    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;

    z-index: 999999;        /* 🔥 stronger */
  }

  .top-nav a {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .top-nav.show {
    max-height: 100vh;       /* 🔥 allows full dropdown */
    overflow-y: auto;        /* 🔥 scroll if many items */
  }
}


/* IMPORTANT — moved OUTSIDE media query */
body {
  padding-top: 80px;
}

.glassmorphic-footer {
  position: relative;
  z-index: 2;
}

/* =========================================================
   EVERYTHING BELOW IS YOUR SAME CODE (UNCHANGED)
========================================================= */

:root {
  --bg: #020617;
  --card: rgba(15, 23, 42, 0.9);
  --card-soft: rgba(15, 23, 42, 0.7);
  --accent: #f97316;
  --accent-alt: #0ea5e9;
  --text: #f9fafb;
  --muted: #e5e7eb;
  --border: rgba(148, 163, 184, 0.5);
}

/* (All your next 1500+ lines remain exactly same — I didn’t touch them) */


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

  body {
  display: block;              /* ❗ FIX */
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  background-image: url("/assets/images/your-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: var(--text);
  overflow-x: hidden;
}

    h1 {
      font-size: 28px;
      letter-spacing: 0.08em;
      text-align: center;
      text-transform: uppercase;
      text-shadow: 0 6px 20px rgba(15, 23, 42, 0.8);
    }

    .sub {
      font-size: 13px;
      color: rgba(241, 245, 249, 0.85);
      max-width: 640px;
      text-align: center;
      text-shadow: 0 4px 14px rgba(15, 23, 42, 0.7);
    }

    /* APP CONTAINER – glass panel floating on the gradient */
.app-shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;                 /* center horizontally */

  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 18px;

  /* Glass background (FIXED syntax) */
  background:
    radial-gradient(
      circle at top left,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.82)
    );
margin:120px auto;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.45);

  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.95),
    inset 0 0 0 1px rgba(255,255,255,0.04);

  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);

  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 22px;
  }
}

    /* PANELS */

    .panel {
      background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.96),
        rgba(15, 23, 42, 0.82)
      );
      border-radius: 20px;
      border: 1px solid rgba(148, 163, 184, 0.55);
      padding: 14px 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.75);
    }

    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .panel-title {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(148, 163, 184, 0.9);
    }

    .pill {
      font-size: 11px;
      padding: 2px 10px;
      border-radius: 999px;
      border: 1px solid rgba(251, 191, 36, 0.8);
      background: radial-gradient(circle at top, rgba(251, 191, 36, 0.18), transparent);
      color: rgba(252, 211, 77, 0.92);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* DROP ZONE */

    .drop-zone {
      border-radius: 16px;
      border: 1px dashed rgba(148, 163, 184, 0.75);
      background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.2), transparent 55%),
        rgba(15, 23, 42, 0.9);
      padding: 18px;
      text-align: center;
      transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease,
        background 0.2s ease;
      cursor: pointer;
    }

    .drop-zone.dragover {
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(249, 115, 22, 0.45);
      background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.3), transparent 55%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.35), transparent 55%),
        rgba(15, 23, 42, 0.96);
    }

    .drop-main-text {
      font-size: 14px;
      font-weight: 500;
    }

    .drop-sub-text {
      font-size: 11px;
      color: rgba(209, 213, 219, 0.9);
      margin-top: 4px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 7px 16px;
      border-radius: 999px;
      font-size: 12px;
      border: none;
      cursor: pointer;
      margin-top: 10px;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #facc15);
      color: #111827;
      font-weight: 600;
      box-shadow:
        0 10px 30px rgba(249, 115, 22, 0.65),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow:
        0 14px 40px rgba(249, 115, 22, 0.75),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    }

    .btn-ghost {
      background: rgba(15, 23, 42, 0.9);
      color: rgba(209, 213, 219, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    .hint {
      font-size: 11px;
      color: rgba(156, 163, 175, 0.95);
      margin-top: 6px;
    }

    /* IMAGE PREVIEW */

    .image-wrapper {
      margin-top: 10px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.6);
      position: relative;
      background: radial-gradient(circle at center, #020617, #020617 60%);
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #previewImage {
      max-width: 100%;
      max-height: 460px;
      display: none;
      cursor: crosshair;
      user-select: none;
    }

    .zoom-badge {
      position: absolute;
      right: 10px;
      bottom: 10px;
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
      border-radius: 12px;
      padding: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      pointer-events: none;
      border: 1px solid rgba(148, 163, 184, 0.75);
      box-shadow: 0 12px 34px rgba(15, 23, 42, 0.9);
    }

    .zoom-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(156, 163, 175, 0.95);
    }

    #zoomCanvas {
      width: 60px;
      height: 60px;
      border-radius: 10px;
      border: 1px solid rgba(248, 250, 252, 0.9);
      background: #000;
    }

    .empty-state {
      font-size: 12px;
      color: rgba(156, 163, 175, 0.95);
      text-align: center;
    }

    /* CURRENT COLOR CARD */

    .color-card {
      border-radius: 16px;
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 12px;
      display: flex;
      gap: 10px;
      align-items: center;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
    }

    .swatch-large {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      border: 2px solid rgba(248, 250, 252, 0.9);
      background: #000;
      flex-shrink: 0;
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8);
    }

    .color-main {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1;
      min-width: 0;
    }

    .color-main-label {
      font-size: 11px;
      color: rgba(156, 163, 175, 0.95);
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .color-main-value {
      font-size: 18px;
      font-weight: 600;
    }

    .color-main-rgb {
      font-size: 11px;
      color: rgba(156, 163, 175, 0.95);
    }

    .color-quick-actions {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .btn-mini {
      border-radius: 999px;
      font-size: 10px;
      padding: 4px 10px;
      border: 1px solid rgba(148, 163, 184, 0.8);
      background: rgba(15, 23, 42, 0.9);
      color: rgba(229, 231, 235, 0.96);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-mini.accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-alt));
      color: #111827;
      border-color: transparent;
      box-shadow: 0 10px 26px rgba(14, 165, 233, 0.55);
    }

    /* VALUES GRID */

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      margin-top: 10px;
    }

    .value-box {
      border-radius: 12px;
      background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
      border: 1px solid rgba(148, 163, 184, 0.7);
      padding: 8px 9px;
      font-size: 11px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .value-label {
      color: rgba(156, 163, 175, 0.98);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 10px;
    }

    .value-content {
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .copy-chip {
      border-radius: 999px;
      padding: 2px 8px;
      border: 1px solid rgba(148, 163, 184, 0.9);
      font-size: 9px;
      background: rgba(15, 23, 42, 0.98);
      cursor: pointer;
    }

    /* PALETTE LIST */

    .palette-header-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      margin-top: 2px;
    }

    .palette-count {
      font-size: 11px;
      color: rgba(156, 163, 175, 0.96);
    }

    .palette-preview {
      margin-top: 8px;
      display: none;
      flex-direction: column;
      gap: 4px;
    }

    .palette-preview-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(156, 163, 175, 0.96);
    }

    .palette-preview-bar {
      width: 100%;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.9);
      background: #020617;
      overflow: hidden;
    }

    .palette-export-row {
      margin-top: 6px;
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
    }

    .palette-list {
      margin-top: 8px;
      max-height: 200px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding-right: 4px;
    }

    .palette-item {
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: 10px;
      padding: 6px 7px;
      background: rgba(15, 23, 42, 0.95);
      border: 1px solid rgba(148, 163, 184, 0.8);
      font-size: 11px;
    }

    .swatch-sm {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      border: 1px solid rgba(248, 250, 252, 0.9);
      flex-shrink: 0;
    }

    .palette-item-body {
      display: flex;
      flex-direction: column;
      gap: 2px;
      flex: 1;
      min-width: 0;
    }

    .palette-hex {
      font-weight: 500;
      font-size: 11px;
    }

    .palette-rgb {
      font-size: 10px;
      color: rgba(156, 163, 175, 0.96);
    }

    .palette-role {
      font-size: 9px;
      color: rgba(250, 204, 21, 0.95);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-top: 2px;
    }

    .palette-actions {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .palette-remove {
      border: none;
      background: transparent;
      color: rgba(156, 163, 175, 0.9);
      font-size: 11px;
      cursor: pointer;
    }

    .palette-remove:hover {
      color: #fecaca;
    }

    /* THEME CARD */

    .theme-card {
      margin-top: 10px;
      border-radius: 14px;
      background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
      border: 1px solid rgba(148, 163, 184, 0.9);
      padding: 10px 10px 9px;
      display: none;
      flex-direction: column;
      gap: 6px;
    }

    .theme-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
    }

    .theme-title {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: rgba(156, 163, 175, 0.96);
    }

    .theme-rows {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
      margin-top: 4px;
    }

    .theme-row {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
    }

    .theme-swatch {
      width: 20px;
      height: 20px;
      border-radius: 6px;
      border: 1px solid rgba(248, 250, 252, 0.9);
      flex-shrink: 0;
    }

    .theme-row-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(156, 163, 175, 0.96);
      font-size: 9px;
    }

    .theme-row-value {
      font-size: 10px;
    }

    .tiny {
      font-size: 10px;
      color: rgba(156, 163, 175, 0.96);
      margin-top: 6px;
    }

    .footer-note {
      font-size: 11px;
      color: rgba(209, 213, 219, 0.9);
      text-align: center;
      color:white;
      margin-top: 10px;
      text-shadow: 0 4px 16px rgba(15, 23, 42, 0.8);
    }

    .toast {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%) translateY(120%);
      background: rgba(15, 23, 42, 0.98);
      color: #fff;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 11px;
      border: 1px solid rgba(148, 163, 184, 0.9);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.25s ease, opacity 0.25s ease;
      z-index: 30;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    .top-header {
  width: 100%;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.top-logo {
  height: 104px;              /* adjust as you like */
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.9));
}

.top-tagline h1 {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    #eecdc3,
    #fffcdb,
    #c6fbe1,
    #dbf4ff,
    #fbe3ff,
    #f8c7b8
  );
  background-size: 400%;
  -webkit-background-clip: text;
  color: transparent;
  animation: colorFill 5s linear infinite;
}

@keyframes colorFill {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===================== GLASSMORPHISM FOOTER STYLES ===================== */

.glassmorphic-footer {
  width: 100%;
  padding: 40px 25px 30px;

  
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  
  border-radius: 20px 20px 0 0;
  margin-top: 60px;

  /* soft gradient overlay for premium feel */
 
}

.glass-footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.glass-footer-col h3 {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.glass-footer-col h4 {
  font-size: 14px;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.glass-footer-col p {
  font-size: 14px;
  color: rgba(241, 245, 249, 0.9);
  line-height: 1.7;
}

.keywords {
  font-size: 13px;
  color: rgba(230, 232, 239, 0.85);
}

.glass-footer-col ul {
  list-style: none;
  padding: 0;
}

.glass-footer-col li {
  margin-bottom: 8px;
}

.glass-footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(230, 232, 239, 0.85);
  transition: 0.25s ease;
}

.glass-footer-col a:hover {
  color: #0ea5e9;
  padding-left: 4px;
}

.glass-footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 35px;
  padding-top: 14px;
  color: rgba(240, 241, 245, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* MOBILE */
@media (max-width: 600px) {
  .glass-footer-content {
    text-align: center;
  }
  .glass-footer-col a:hover {
    padding-left: 0;
  }
}
/* ================= STEPS ================= */
.how-wrapper {
  max-width: 1120px;
  margin: 100px auto 80px;
  padding: 0 20px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
/* ================= HERO 1 ================= */
.hero1 {
  max-width: 920px;
  margin: 120px auto 40px;   /* ⬅ pushes below fixed header */
  padding: 0 20px;
  text-align: center;
}

.hero1 h1 {
  font-size: 34px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;

  background: linear-gradient(
    90deg,
    #effaff,
    #d1d6ff,
    #c084fc,
    #fff0f8
  );
  -webkit-background-clip: text;

}

.hero1 p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(241,245,249,0.85);
  max-width: 720px;
  margin: auto;
}

/* ================= STEP CARD ================= */
.step-card {
  padding: 22px 20px;
  border-radius: 20px;

  background: linear-gradient(
    145deg,
    rgba(15,23,42,0.96),
    rgba(15,23,42,0.85)
  );

  border: 1px solid rgba(148,163,184,0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 22px 55px rgba(15,23,42,0.85);
  transition: transform .25s ease, box-shadow .25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15,23,42,0.95);
}

/* ================= ICON ================= */
.step-icon {
  font-size: 32px;
  margin-bottom: 10px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.4));
}

/* ================= TEXT ================= */
.step-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.step-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(226,232,240,0.9);
}
/* ================= FEATURES GRID ================= */

.features-wrapper {
  max-width: 1120px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* FEATURE CARD */
.feature-card {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.85)
  );
  border-radius: 22px;
  padding: 22px 20px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(18px);

  display: flex;
  flex-direction: column;
  gap: 10px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
}

/* ICON */
.feature-icon {
  font-size: 26px;
  line-height: 1;
}

/* TITLE */
.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #f8fafc;
}

/* TEXT */
.feature-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.92);
}

/* ================= CTA ================= */
.cta-section {
      max-width: 980px;
    margin: 60px auto 100px;
    padding: 44px 26px;
    text-align: center;
    background: radial-gradient(circle at top left, rgb(10 20 25 / 45%), rgb(8 9 22 / 35%), rgba(15, 23, 42, 0.95));
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    /* box-shadow: 0 40px 90px rgba(15, 23, 42, 0.9), inset 0 0 40px rgba(99, 102, 241, 0.25); */
}

/* Heading */
.cta-section h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;

  background: linear-gradient(
    90deg,
    #38bdf8,
    #818cf8,
    #c084fc,
    #f472b6
  );
  background-size: 300%;
  -webkit-background-clip: text;
  color: transparent;

  animation: ctaGlow 6s ease infinite;
}

@keyframes ctaGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Description */
.cta-section p {
  font-size: 15px;
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: 22px;
  line-height: 1.6;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #020617;

  background: linear-gradient(
    135deg,
    #38bdf8,
    #22d3ee,
    #facc15
  );

  box-shadow:
    0 12px 35px rgba(56, 189, 248, 0.65),
    0 0 30px rgba(34, 211, 238, 0.45);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 55px rgba(56, 189, 248, 0.9),
    0 0 40px rgba(250, 204, 21, 0.6);
}


/* ================= MOBILE ================= */

@media (max-width: 640px) {
  .hero1 h1 {
    font-size: 20px;
    padding: 30px 20px 10px;

  }

  .hero1 p {
    font-size: 14px;
        padding: 30px;
  }

  .cta-section h2 {
    font-size: 18px;
  }
}
/* =========================================================
   FAQS PAGE STYLES – ColorPicker.online
   Clean • Premium • Glass UI
========================================================= */

/* ---------- HERO ---------- */

.faq-hero {
  max-width: 860px;
  margin: 140px auto 50px;
  padding: 0 20px;
  text-align: center;
}

.faq-hero h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;

  background: linear-gradient(
    90deg,
    #e0f2fe,
    #c7d2fe,
    #d8b4fe,
    #fbcfe8
  );
  -webkit-background-clip: text;

}

.faq-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.85);
  max-width: 640px;
  margin: 0 auto;
}


/* ---------- FAQ LIST WRAPPER ---------- */

.faq-wrapper {
  max-width: 860px;
  margin: 0 auto 110px;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  gap: 14px;
}


/* ---------- FAQ ITEM CARD ---------- */

.faq-item {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 20px;



  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow:
    0 26px 65px rgba(15, 23, 42, 0.85);
}


/* ---------- QUESTION ---------- */

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 6px;
  line-height: 1.4;
}


/* ---------- ANSWER ---------- */

.faq-item p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.9);
}


/* ---------- OPTIONAL EMPHASIS ---------- */

.faq-item strong {
  color: #e0f2fe;
  font-weight: 600;
}


/* ---------- MOBILE OPTIMIZATION ---------- */

@media (max-width: 600px) {

  .faq-hero {
    margin-top: 120px;
  }

  .faq-hero h1 {
    font-size: 26px;
    letter-spacing: 0.06em;
  }

  .faq-hero p {
    font-size: 14px;
  }

  .faq-item {
    padding: 16px 18px;
  }

  .faq-item h3 {
    font-size: 14px;
  }

  .faq-item p {
    font-size: 13px;
  }
}
/* =========================================================
   CONTACT PAGE – ColorPicker.online
========================================================= */

.contact-hero {
  max-width: 820px;
  margin: 140px auto 50px;
  padding: 0 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;

  background: linear-gradient(
    90deg,
    #e0f2fe,
    #c7d2fe,
    #d8b4fe,
    #fbcfe8
  );
  -webkit-background-clip: text;

}

.contact-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.85);
}


/* ---------- CARD ---------- */

.contact-wrapper {
  max-width: 720px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.contact-card {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 34px 30px;
  text-align: center;

  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.85);
}

.contact-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f8fafc;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.9);
  margin-bottom: 16px;
}


/* ---------- EMAIL CTA ---------- */

.contact-email {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  padding: 10px 22px;
  border-radius: 999px;

  color: #020617;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);

  box-shadow:
    0 12px 30px rgba(99, 102, 241, 0.55);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-email:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 45px rgba(99, 102, 241, 0.75);
}


/* ---------- NOTE ---------- */

.contact-note {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 16px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

  .contact-hero h1 {
    font-size: 26px;
    letter-spacing: 0.06em;
  }

  .contact-card {
    padding: 26px 22px;
  }

}
/* =========================================================
   PRIVACY POLICY – ColorPicker.online
========================================================= */

.policy-hero {
  max-width: 860px;
  margin: 140px auto 50px;
  padding: 0 20px;
  text-align: center;
}

.policy-hero h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;

  background: linear-gradient(
    90deg,
    #e0f2fe,
    #c7d2fe,
    #d8b4fe,
    #fbcfe8
  );
  -webkit-background-clip: text;
 
}

.policy-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.85);
}


/* ---------- CONTENT ---------- */

.policy-wrapper {
  max-width: 860px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.policy-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 36px 34px;

  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.85);
}

.policy-card h2 {
  font-size: 17px;
  margin: 22px 0 6px;
  color: #f8fafc;
}

.policy-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.9);
}


/* ---------- EMAIL ---------- */

.policy-email {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #020617;

  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);

  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.55);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(99, 102, 241, 0.75);
}


/* ---------- META ---------- */

.policy-updated {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.85);
  margin-top: 24px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

  .policy-hero h1 {
    font-size: 26px;
    letter-spacing: 0.06em;
  }

  .policy-card {
    padding: 26px 22px;
  }

}
