 :root {
        --bg: #050816;
        --accent: #6366f1;
        --accent2: #ec4899;
        --text: #e5e7eb;
        --muted: #9ca3af;
        --card-bg: #0b1020;
        --border: rgba(148, 163, 184, 0.35);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", sans-serif;
      }

      body {
        background: radial-gradient(
          circle at top,
          #111827 0,
          #020617 45%,
          #020617 100%
        );
        color: var(--text);
        min-height: 100vh;
        overflow-x: hidden;
      }

      .container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 20px;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      /* ====== ANIMATED BACKGROUND BLOBS ====== */
      .blob {
        position: fixed;
        border-radius: 999px;
        filter: blur(40px);
        opacity: 0.6;
        z-index: -1;
        mix-blend-mode: screen;
      }

      .blob.blob-1 {
        width: 380px;
        height: 380px;
        background: #4f46e5;
        top: -80px;
        left: -40px;
        animation: float1 16s infinite alternate ease-in-out;
      }

      .blob.blob-2 {
        width: 420px;
        height: 420px;
        background: #ec4899;
        bottom: -120px;
        right: -60px;
        animation: float2 18s infinite alternate ease-in-out;
      }

      .blob.blob-3 {
        width: 260px;
        height: 260px;
        background: #22d3ee;
        top: 40%;
        right: 10%;
        animation: float3 20s infinite alternate ease-in-out;
      }

      @keyframes float1 {
        from {
          transform: translate(0, 0) scale(1);
        }
        to {
          transform: translate(80px, 60px) scale(1.1);
        }
      }
      @keyframes float2 {
        from {
          transform: translate(0, 0) scale(1);
        }
        to {
          transform: translate(-60px, -40px) scale(1.12);
        }
      }
      @keyframes float3 {
        from {
          transform: translate(0, 0) scale(1);
        }
        to {
          transform: translate(-40px, 40px) scale(1.08);
        }
      }

      /* ====== NAVBAR ====== */
      .nav {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(18px);
        background: linear-gradient(
          to bottom,
          rgba(15, 23, 42, 0.94),
          rgba(15, 23, 42, 0.6),
          transparent
        );
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
      }

      .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        gap: 14px;
      }

      .nav-left {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .nav-logo-mark {
        width: 32px;
        height: 32px;
        border-radius: 999px;
        border: 2px solid rgba(248, 250, 252, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        background: radial-gradient(circle, #22d3ee, #6366f1);
        box-shadow: 0 0 25px rgba(59, 130, 246, 0.7);
      }

      .nav-title {
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 14px;
      }

      .nav-links {
        display: flex;
        gap: 20px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
      }

      .nav-link {
        cursor: pointer;
        position: relative;
        color: var(--muted);
      }

      .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        border-radius: 999px;
        transition: width 0.25s ease-out;
      }

      .nav-link:hover {
        color: #e5e7eb;
      }
      .nav-link:hover::after {
        width: 100%;
      }

      .nav-actions {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      .chip {
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: rgba(15, 23, 42, 0.9);
        color: var(--muted);
      }

      .btn-primary {
        border: none;
        outline: none;
        padding: 9px 20px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--accent), var(--accent2));
        color: white;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0 12px 30px rgba(99, 102, 241, 0.6);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-primary span.icon {
        font-size: 15px;
      }

      .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 40px rgba(99, 102, 241, 0.8);
      }


      

      /* ====== HERO ====== */
      .hero {
        padding: 40px 0 80px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
        gap: 40px;
        align-items: center;
      }

      .hero-eyebrow {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: var(--muted);
        margin-bottom: 12px;
      }

      .hero-title {
        font-size: clamp(40px, 5vw, 64px);
        line-height: 1.02;
        font-weight: 700;
        margin-bottom: 16px;
      }

      .hero-gradient {
        background: linear-gradient(120deg, #e5e7eb, #a5b4fc, #f9a8d4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .hero-sub {
        font-size: 15px;
        max-width: 480px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 22px;
      }

      .hero-cta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
      }

      .btn-outline {
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        background: rgba(15, 23, 42, 0.85);
        padding: 9px 18px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        cursor: pointer;
        color: var(--text);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-outline:hover {
        background: rgba(15, 23, 42, 1);
      }

      .hero-tagline {
        font-size: 12px;
        color: var(--muted);
      }

      .hero-right {
        position: relative;
        min-height: 320px;
        perspective: 1200px;
        display: flex;
        justify-content: flex-end;
      }

      .hero-panel {
        position: relative;
        background: radial-gradient(circle at top left, #1f2937, #020617);
        border-radius: 26px;
        padding: 20px 18px 18px;
        border: 1px solid rgba(148, 163, 184, 0.35);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
        overflow: hidden;
        transform-style: preserve-3d;
        will-change: transform;
        transition: transform 0.15s ease-out;
        width: 100%;
        max-width: 480px;
        transform: scale(1.06);
        transform-origin: center right;
      }

      /* Code editor style typing area inside hero panel */
      .hero-editor {
        background: radial-gradient(circle at top, #020617, #020617);
        border-radius: 16px;
        border: 1px solid rgba(55, 65, 81, 0.9);
        margin-bottom: 12px;
        overflow: hidden;
        font-family: "Fira Code", "JetBrains Mono", monospace;
      }

      .hero-editor-header {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 10px;
        background: rgba(15, 23, 42, 0.98);
        font-size: 10px;
        color: var(--muted);
      }

      .hero-editor-dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
      }

      .hero-editor-dot.red {
        background: #f87171;
      }
      .hero-editor-dot.yellow {
        background: #facc15;
      }
      .hero-editor-dot.green {
        background: #4ade80;
      }

      .hero-editor-body {
        padding: 10px 12px 12px;
        font-size: 11px;
        color: #e5e7eb;
        background: radial-gradient(circle at top left, #020617, #020617);
        min-height: 40px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px;
      }

      .editor-prefix {
        color: #22c55e;
        margin-right: 4px;
      }

      #editor-typing {
        white-space: nowrap;
      }

      .editor-cursor {
        display: inline-block;
        width: 7px;
        height: 14px;
        margin-left: 3px;
        background: #e5e7eb;
        animation: blink 1s step-start infinite;
      }

      .hero-panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
      }

      .pill {
        font-size: 10px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        color: var(--muted);
      }

      .status-dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: #22c55e;
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
        margin-right: 6px;
      }

      .hero-panel-badge {
        display: flex;
        align-items: center;
        font-size: 11px;
        color: var(--muted);
      }

      .hero-table {
        background: rgba(15, 23, 42, 0.96);
        border-radius: 16px;
        border: 1px solid rgba(55, 65, 81, 0.8);
        padding: 14px;
        font-size: 11px;
        backdrop-filter: blur(10px);
      }

      .hero-table-header,
      .hero-table-row {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        column-gap: 8px;
        align-items: center;
      }

      .hero-table-header {
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 10px;
        color: var(--muted);
        margin-bottom: 8px;
        opacity: 0.9;
      }

      .hero-table-row {
        padding: 6px 0;
        border-radius: 10px;
      }

      .hero-table-row:nth-child(odd) {
        background: rgba(15, 23, 42, 0.7);
      }

      .badge-soft {
        font-size: 10px;
        padding: 4px 8px;
        border-radius: 999px;
        background: rgba(56, 189, 248, 0.1);
        color: #7dd3fc;
        border: 1px solid rgba(56, 189, 248, 0.6);
        text-align: center;
      }

      .time-chip {
        font-size: 10px;
        color: var(--muted);
      }

      .hero-ai-bubble {
        position: absolute;
        right: -4px;
        bottom: -4px;
        background: radial-gradient(circle at top, #4f46e5, #020617);
        border-radius: 20px;
        padding: 10px 14px;
        border: 1px solid rgba(129, 140, 248, 0.6);
        box-shadow: 0 14px 40px rgba(79, 70, 229, 0.8);
        font-size: 11px;
        max-width: 220px;
        display: flex;
        gap: 8px;
        align-items: flex-start;
      }

      .hero-ai-bubble span.emoji {
        font-size: 16px;
      }

      /* Auto typing text style (left side "Powered by") */
      .typing-wrapper {
        margin-top: 10px;
        font-size: 13px;
        color: var(--muted);
      }
      .typing-label {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: #a5b4fc;
      }
      #typing-text {
        display: inline-block;
        margin-top: 4px;
        font-size: 13px;
        color: #e5e7eb;
        min-height: 1.4em;
      }
      .typing-cursor {
        display: inline-block;
        width: 8px;
        background: #e5e7eb;
        margin-left: 2px;
        animation: blink 1s infinite;
      }
      @keyframes blink {
        0%,
        50% {
          opacity: 1;
        }
        50.01%,
        100% {
          opacity: 0;
        }
      }

      /* ====== SECTION BASE ====== */
      .section {
        padding: 40px 0 80px;
      }

      .section-header {
        text-align: center;
        margin-bottom: 36px;
      }

      .section-eyebrow {
        font-size: 11px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 8px;
      }

      .section-title {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 8px;
      }

      .section-sub {
        font-size: 14px;
        color: var(--muted);
        max-width: 540px;
        margin: 0 auto;
      }

      /* FEATURES GRID */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .feature-card {
        background: radial-gradient(circle at top left, #111827, #020617);
        border-radius: 22px;
        border: 1px solid var(--border);
        padding: 16px 16px 18px;
        position: relative;
        overflow: hidden;
        transform-origin: center;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease,
          border-color 0.2s ease;
      }

      .feature-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at top,
          rgba(129, 140, 248, 0.2),
          transparent
        );
        opacity: 0;
        transition: opacity 0.25s ease;
        pointer-events: none;
      }

      .feature-icon {
        width: 30px;
        height: 30px;
        border-radius: 14px;
        background: rgba(30, 64, 175, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        font-size: 16px;
      }

      .feature-title {
        font-size: 15px;
        font-weight: 500;
        margin-bottom: 6px;
      }

      .feature-body {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 10px;
      }

      .feature-tag {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: #a5b4fc;
      }

      .feature-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
        border-color: rgba(129, 140, 248, 0.7);
      }

      .feature-card:hover::before {
        opacity: 1;
      }

      /* CTA STRIP */
      .cta-strip {
        margin-top: 40px;
        border-radius: 26px;
        padding: 18px 20px;
        border: 1px solid rgba(148, 163, 184, 0.4);
        background: linear-gradient(
          90deg,
          rgba(129, 140, 248, 0.18),
          rgba(236, 72, 153, 0.18)
        );
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px;
        justify-content: space-between;
        font-size: 13px;
      }

      .cta-text-main {
        font-weight: 500;
      }
      .cta-text-sub {
        color: var(--muted);
        font-size: 12px;
      }

      /* EXTRA LAYOUTS FROM EARLIER (process, comparison, views, etc.) — SAME AS PEHLE WALA */

      .section-title-large {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: left;
      }

      .section-kicker {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        color: var(--muted);
        margin-bottom: 8px;
      }

      .section-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        gap: 28px;
        align-items: center;
      }

      .process-steps {
        display: grid;
        gap: 12px;
      }

      .process-step {
        padding: 12px 14px;
        border-radius: 16px;
        background: radial-gradient(circle at top left, #020617, #020617);
        border: 1px solid rgba(148, 163, 184, 0.45);
        font-size: 13px;
        color: var(--muted);
        position: relative;
        overflow: hidden;
      }

      .process-step::before {
        content: attr(data-step);
        position: absolute;
        left: 12px;
        top: 10px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(148, 163, 184, 0.9);
      }

      .process-step-title {
        font-size: 15px;
        font-weight: 500;
        margin-top: 18px;
        margin-bottom: 4px;
        color: #e5e7eb;
      }

      .process-step-body {
        line-height: 1.6;
      }

      .section-image-wrap {
        position: relative;
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid rgba(148, 163, 184, 0.5);
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
        transform-origin: center;
        background: radial-gradient(circle at top, #020617, #020617);
        will-change: transform;
        transition: transform 0.4s ease-out;
      }

      .section-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: screen;
        opacity: 0.95;
      }

      .image-glass-label {
        position: absolute;
        bottom: 12px;
        left: 12px;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        background: rgba(15, 23, 42, 0.86);
        border: 1px solid rgba(148, 163, 184, 0.7);
        color: var(--muted);
        backdrop-filter: blur(12px);
      }

      .compare-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 18px;
      }

      .compare-card {
        padding: 16px 16px 18px;
        border-radius: 22px;
        background: radial-gradient(circle at top left, #020617, #020617);
        border: 1px solid rgba(148, 163, 184, 0.45);
        font-size: 13px;
        color: var(--muted);
        position: relative;
        overflow: hidden;
      }

      .compare-heading {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .pill-negative {
        padding: 2px 6px;
        border-radius: 999px;
        font-size: 10px;
        background: rgba(248, 113, 113, 0.1);
        color: #fecaca;
        border: 1px solid rgba(248, 113, 113, 0.7);
      }

      .pill-positive {
        padding: 2px 6px;
        border-radius: 999px;
        font-size: 10px;
        background: rgba(52, 211, 153, 0.12);
        color: #bbf7d0;
        border: 1px solid rgba(52, 211, 153, 0.7);
      }

      .compare-list {
        list-style: none;
        padding-left: 0;
      }

      .compare-list li {
        margin-bottom: 6px;
        display: flex;
        gap: 6px;
        align-items: flex-start;
      }

      .compare-icon-bad,
      .compare-icon-good {
        font-size: 12px;
        margin-top: 2px;
      }

      .highlight-text {
        background: linear-gradient(120deg, #a5b4fc, #f9a8d4);
        -webkit-background-clip: text;
        color: transparent;
        font-weight: 600;
      }

      .two-col-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 16px;
      }

      .metric-card {
        border-radius: 22px;
        padding: 16px;
        background: radial-gradient(circle at top left, #020617, #020617);
        border: 1px solid rgba(148, 163, 184, 0.6);
        font-size: 13px;
        color: var(--muted);
      }

      .metric-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--muted);
        margin-bottom: 4px;
      }

      .metric-value {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 4px;
      }

      .mini-tag {
        font-size: 10px;
        color: #a5b4fc;
      }

      .views-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 18px;
      }

      .view-card {
        border-radius: 22px;
        padding: 14px;
        background: radial-gradient(circle at top left, #020617, #020617);
        border: 1px solid rgba(148, 163, 184, 0.5);
        font-size: 12px;
        color: var(--muted);
      }

      .view-title {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
      }

      .mini-table {
        width: 100%;
        border-spacing: 0;
        font-size: 11px;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid rgba(55, 65, 81, 0.8);
      }

      .mini-table thead {
        background: rgba(15, 23, 42, 0.96);
        text-transform: uppercase;
        letter-spacing: 0.12em;
      }

      .mini-table th,
      .mini-table td {
        padding: 5px 6px;
        text-align: left;
      }

      .mini-table tbody tr:nth-child(odd) {
        background: rgba(15, 23, 42, 0.8);
      }

      .erp-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
      }

      .erp-chip {
        font-size: 11px;
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.6);
        background: rgba(15, 23, 42, 0.9);
        color: var(--muted);
      }

     

#faq {
  margin-top: 60px;
}

.faq-heading {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}

.faq-sub {
  font-size: 14px;
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: radial-gradient(circle at top left, #111827, #020617);
  overflow: hidden;
  transition: 0.35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.35);
  border-color: rgba(129, 140, 248, 0.6);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-icon {
  font-size: 20px;
  transition: 0.3s;
  color: var(--muted);
}

.faq-answer {
  font-size: 13px;
  padding: 0 20px 16px;
  color: var(--muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 180px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #a5b4fc;
}



 /* FOOTER */
      .footer {
        border-top: 1px solid rgba(55, 65, 81, 0.7);
        padding: 16px 20px 26px;
        font-size: 12px;
        color: var(--muted);
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
      }

      .footer a {
        color: #a5b4fc;
      }

      /* RESPONSIVE */
      @media (max-width: 900px) {
        .hero-grid {
          grid-template-columns: minmax(0, 1fr);
        }
        .hero-right {
          order: -1;
          justify-content: center;
        }
        .hero {
          padding-top: 24px;
        }
        .section-layout {
          grid-template-columns: minmax(0, 1fr);
        }
        .hero-panel {
          transform: scale(1);
          max-width: 100%;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
        }
        .chip {
          display: none;
        }
        .features-grid,
        .compare-grid,
        .two-col-grid,
        .views-grid {
          grid-template-columns: minmax(0, 1fr);
        }
      }

      @media (max-width: 640px) {
        .features-grid {
          grid-template-columns: minmax(0, 1fr);
        }
        .hero-panel {
          padding: 18px 14px 16px;
        }
      }

      .footer-new {
  margin-top: 40px;
  padding: 40px 20px 25px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  font-weight: 700;
  color: white;
  font-size: 16px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
}

.footer-sub {
  font-size: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(99, 102, 241, 0.9);
}

.footer-social {
  display: flex;
  gap: 12px;
  font-size: 20px;
}

.footer-social a {
  transition: 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
}