:root {
      --gold: #c9a050;
      --gold-light: #e0c878;
      --bg: #0a0a0a;
      --surface: #111111;
      --surface-hover: #161616;
      --text: #f5f5f5;
      --text-secondary: #a0a0a0;
      --border: rgba(255, 255, 255, 0.06);
      --gradient-gold: linear-gradient(135deg, #c9a050, #b8892e);
      --gradient-gold-hover: linear-gradient(135deg, #d4b860, #c9a050);
      --radius: 16px;
    }
    body {
      background: var(--bg);
      color: var(--text);
    }
    .toolkit-page {
      overflow-x: hidden;
    }
    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeScale {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    [data-animate] {
      opacity: 0;
      animation: fadeUp 0.8s ease forwards;
    }
    [data-animate="scale"] {
      animation: fadeScale 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; }
    .delay-5 { animation-delay: 0.5s; }
    .delay-6 { animation-delay: 0.6s; }

    /* ========== HERO SECTION ========== */
    .toolkit-hero {
      position: relative;
      padding: 100px 0 80px;
      background: radial-gradient(circle at 20% 30%, rgba(201,160,80,0.08) 0%, transparent 50%),
                  radial-gradient(circle at 80% 70%, rgba(201,160,80,0.05) 0%, transparent 50%),
                  var(--bg);
      overflow: hidden;
    }
    .toolkit-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      left: -20%;
      width: 80%;
      height: 150%;
      background: radial-gradient(circle, rgba(201,160,80,0.12) 0%, transparent 70%);
      filter: blur(60px);
      z-index: 0;
    }
    .toolkit-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(201,160,80,0.1);
      border: 1px solid rgba(201,160,80,0.3);
      color: var(--gold-light);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 24px;
    }
    .toolkit-hero h1 {
      font-size: clamp(2.2rem, 6vw, 3.5rem);
      font-weight: 800;
      color: var(--text);
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .toolkit-hero h1 .highlight {
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% 200%;
      animation: gradientShift 4s ease infinite;
    }
    .toolkit-hero p {
      font-size: 1.15rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gradient-gold);
      border: none;
      color: #0a0a0a;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 14px 32px;
      border-radius: 12px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 8px 28px rgba(201,160,80,0.3);
    }
    .hero-cta:hover {
      background: var(--gradient-gold-hover);
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(201,160,80,0.45);
    }
    .hero-sub-cta {
      display: block;
      margin-top: 14px;
      color: #777;
      font-size: 0.8rem;
    }

    /* ========== DIFFERENTIATORS ========== */
    .diff-section {
      padding: 60px 0 80px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .diff-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 960px;
      margin: 0 auto;
    }
    .diff-item {
      text-align: center;
      padding: 28px 16px;
      border-radius: var(--radius);
      background: rgba(255,255,255,0.02);
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }
    .diff-item:hover {
      border-color: rgba(201,160,80,0.2);
      background: rgba(201,160,80,0.03);
    }
    .diff-icon {
      font-size: 2.4rem;
      margin-bottom: 16px;
    }
    .diff-item h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }
    .diff-item p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* ========== TOOLS GRID (enhanced) ========== */
    .tools-section {
      padding: 80px 0 100px;
    }
    .tools-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .tools-header .kicker {
      color: var(--gold);
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .tools-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 991px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .tools-grid { grid-template-columns: 1fr; } .diff-grid { grid-template-columns: 1fr; } }

    .tool-card {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 24px 28px;
      display: flex;
      flex-direction: column;
      transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }
    .tool-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: var(--gradient-gold);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .tool-card:hover {
      transform: translateY(-6px);
      border-color: rgba(201,160,80,0.35);
      background: var(--surface-hover);
      box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,160,80,0.15);
    }
    .tool-card:hover::after {
      opacity: 1;
    }
    .tool-card-icon {
      font-size: 2.6rem;
      margin-bottom: 20px;
      line-height: 1;
    }
    .tool-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }
    .tool-card p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.55;
      flex-grow: 1;
      margin-bottom: 16px;
    }
    .tool-card .tool-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #666;
      font-weight: 600;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .tool-card .tool-cta-text {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--gold);
      font-weight: 700;
      font-size: 0.9rem;
      transition: gap 0.3s ease;
    }
    .tool-card:hover .tool-cta-text {
      gap: 10px;
    }
    .tool-card .arrow {
      display: inline-block;
      transition: transform 0.3s ease;
    }
    .tool-card:hover .arrow {
      transform: translateX(4px);
    }

    /* ========== TESTIMONIALS ========== */
    .testimonials-section {
      padding: 60px 0 80px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .testimonial-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      max-width: 900px;
      margin: 40px auto 0;
    }
    .testimonial-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      width: 260px;
      text-align: left;
      transition: all 0.3s ease;
    }
    .testimonial-card:hover {
      border-color: rgba(201,160,80,0.3);
      background: rgba(201,160,80,0.02);
    }
    .testimonial-card .quote {
      font-size: 0.95rem;
      color: #ccc;
      line-height: 1.5;
      margin-bottom: 12px;
      font-style: italic;
    }
    .testimonial-card .author {
      font-weight: 700;
      color: var(--text);
      font-size: 0.85rem;
    }
    .testimonial-card .author span {
      display: block;
      font-weight: 400;
      color: var(--text-secondary);
      font-size: 0.75rem;
    }
    .stars {
      color: var(--gold);
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    /* ========== FINAL CTA ========== */
    .final-cta {
      padding: 80px 0 100px;
      text-align: center;
      position: relative;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 200px;
      background: radial-gradient(circle, rgba(201,160,80,0.1) 0%, transparent 70%);
      filter: blur(50px);
      z-index: 0;
    }
    .final-cta-content {
      position: relative;
      z-index: 2;
    }
    .final-cta h2 {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }
    .final-cta p {
      color: var(--text-secondary);
      margin-bottom: 28px;
    }
    .btn-gold-lg {
      display: inline-block;
      background: var(--gradient-gold);
      color: #0a0a0a;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 16px 36px;
      border-radius: 12px;
      text-decoration: none;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(201,160,80,0.35);
    }
    .btn-gold-lg:hover {
      background: var(--gradient-gold-hover);
      color: #000;
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(201,160,80,0.5);
    }
    /* ========== RESPONSIVE ========== */
    @media (max-width: 768px) {
      .toolkit-hero { padding: 70px 0 60px; }
      .testimonial-grid { flex-direction: column; align-items: center; }
      .testimonial-card { width: 100%; max-width: 320px; }
    }