    /* ======================
       Page-Specific Styles
    ====================== */

    /* ======================
       Hero Section Styles
    ====================== */
    .hero-section {
      width: 100%;
      background: white;
      padding-top: 4rem 2rem;
      text-align: center;
    }

    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      margin-top:10rem;
      width: 90%;
      max-width: 1200px;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 4rem;
      color: #111827;
    }

    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: #6b7280;
    }

    .hero-content .hero-stats {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin-top: 0rem;
    }

    .hero-content .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-content .stat-number {
      font-size: 3rem;
      font-weight: 800;
      color: #111827;
    }

    .hero-content .stat-label {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #6b7280;
      margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .hero-content .stat-number {
        font-size: 2rem;
      }

      .hero-content .hero-stats {
        gap: 2rem;
      }
    }

    /* Search Box Container */
    .tick-box {
      position: relative;
      padding: 0.5rem;
      flex: 2;
      min-width: 250px;
    }

    .tick-box input {
      width: 100%;
      border: none;
      outline: none;
    }

    /* ======================
       Modal Styles
    ====================== */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-dark);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      overflow-y: auto;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: var(--color-bg-light);
      padding: 2rem;
      border-radius: 10px;
      max-width: 450px;
      width: 90%;
      box-shadow: 0 20px 60px var(--overlay-dark);
      margin: 2rem auto;
    }

    .modal-content h2 {
      margin-bottom: 1.5rem;
      color: var(--color-text);
    }

    .account-type-selector {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .account-type-selector.hidden {
      display: none;
    }

    .account-type-btn {
      flex: 1;
      padding: 1rem;
      border: 2px solid var(--color-border);
      background: var(--color-bg-light);
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.2s;
      text-align: center;
    }

    .account-type-btn:hover {
      border-color: var(--color-primary);
      background: var(--color-primary-light);
    }

    .account-type-btn.active {
      border-color: var(--color-primary);
      background: var(--color-primary-light);
      font-weight: 600;
    }

    .account-type-btn .type-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .account-type-btn .type-desc {
      font-size: 0.85rem;
      color: var(--color-text-light);
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--color-text-light);
    }

    .form-group input {
      width: 100%;
      padding: 10px;
      border: 1px solid var(--color-border);
      border-radius: 6px;
      font-size: 1rem;
    }

    .form-group small {
      color: var(--color-text-light);
      font-size: 0.85rem;
    }

    .btn-primary {
      width: 100%;
      background: var(--color-primary);
      color: var(--color-bg-light);
      padding: 12px;
      margin-top: 1rem;
      font-weight: 600;
    }

    .btn-primary:hover {
      background: var(--color-primary-dark);
    }

    .btn-primary:disabled {
      background: var(--color-text-light);
      cursor: not-allowed;
    }

    .btn-secondary {
      width: 100%;
      background: var(--color-text-light);
      color: var(--color-bg-light);
      padding: 10px;
      margin-top: 0.5rem;
    }

    .toggle-form {
      text-align: center;
      margin-top: 1rem;
      color: var(--color-text-light);
    }

    .toggle-form a {
      color: var(--color-primary);
      cursor: pointer;
    }

    .toggle-form a:hover {
      text-decoration: underline;
    }

    /* Hero Section */
    .hero {
      text-align: center;
      padding: 4rem 1rem;
      max-width: 900px;
      margin: auto;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(90deg, #000000 0%, #666666 25%, #000000 50%, #666666 75%, #000000 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 6s linear infinite;
    }

    @keyframes shimmer {
      0% {
        background-position: 0% 0%;
      }
      100% {
        background-position: 200% 0%;
      }
    }

    .hero p {
      color: #6b7280;
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-bottom: 0rem;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      display: block;
      font-size: 2.5rem;
      font-weight: 800;
      color: #00baf8;
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #6b7280;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Search Bar */
    .search-bar {
      margin-bottom: 2rem;
      display: flex;
      gap: 1rem;
      align-items: center;
      position: relative;
    }

    .search-container {
      flex: 2;
      position: relative;
      min-width: 250px;
    }

    .search-bar input {
      width: 100%;
      padding: 12px;
      border-radius: 4px;
      border: 1px solid var(--color-border);
      font-size: 1rem;
      box-sizing: border-box;
    }

    .search-bar input:focus {
      outline: none;
      border: 1px solid var(--color-primary);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .category-dropdown {
      padding: 12px;
      border-radius: 4px;
      border: 1px solid var(--color-border);
      background: var(--color-bg-light);
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
      width: 200px;
      box-sizing: border-box;
      height: 46px;
    }

    .category-dropdown:hover {
      border-color: var(--color-primary);
    }

    .category-dropdown:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    /* Tag suggestions dropdown */
    .tag-suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--color-bg-light);
      border: 1px solid var(--color-border);
      border-top: none;
      border-radius: 0 0 6px 6px;
      max-height: 200px;
      overflow-y: auto;
      z-index: 1000;
      box-shadow: 0 4px 6px var(--overlay-light);
    }

    .tag-suggestion-item {
      padding: 10px 12px;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .tag-suggestion-item:hover {
      background: var(--color-bg);
    }

    .tag-suggestion-item .tag-icon {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      background: var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: var(--color-text-light);
    }

    /* Pinned tags container */
    .pinned-tags {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .pinned-tag {
      background: var(--color-primary);
      color: var(--color-bg-light);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.2s;
      position: relative;
    }

    .pinned-tag:hover {
      background: var(--color-primary-dark);
    }

    .pinned-tag .remove-tag {
      display: none;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 0.75rem;
      font-weight: bold;
      transition: background 0.2s;
    }

    .pinned-tag:hover .remove-tag {
      display: inline-flex;
    }

    .pinned-tag .remove-tag:hover {
      background: rgba(255, 255, 255, 0.5);
    }

    /* Card hover effects (page-specific enhancement) */
    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px var(--overlay-light);
    }

    /* Tag colors (page-specific styling) */
    .tag {
      background: var(--color-primary-light);
      color: var(--color-primary-dark);
    }

    /* ======================
       Expandable Card Styles
    ====================== */
    .card {
      cursor: pointer;
      position: relative;
      transition: opacity 0.2s;
      padding: 0;
      overflow: hidden;
    }

    .card.active {
      opacity: 1;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
      border: 2px solid var(--color-primary);
    }

    .card-collapsed {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .card-banner {
      min-height: 80px;
      height: 80px;
      background: var(--color-bg-light);
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
    }

    .card-header {
      background: var(--color-bg);
      padding: 1rem 1.5rem;
      margin: 0;
      border-bottom: 1px solid var(--color-border);
      min-height: 72px;
      display: flex;
      align-items: center;
    }

    .card-logo {
      width: 40px;
      height: 40px;
      object-fit: contain;
      border-radius: 6px;
      padding: 4px;
      flex-shrink: 0;
    }

    .card-collapsed > p,
    .card-collapsed > .tags {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .card-collapsed > p:first-of-type {
      padding-top: 1rem;
    }

    .card-collapsed > .save-to-saasdeck-btn {
      margin: 0.75rem 1.5rem 1.5rem 1.5rem;
    }

    .card-collapsed .tags {
      margin-top: auto;
      margin-bottom: 0.75rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    /* Listing Links */
    .listing-link {
      color: #2563eb;
      font-size: 0.875rem;
      text-decoration: none;
      display: inline;
      transition: text-decoration 0.2s ease;
    }

    .listing-link:hover {
      text-decoration: underline;
    }

    .card-expanded-content {
      display: none;
    }

    /* Expansion Panel */
    .expansion-panel {
      grid-column: 1 / -1;
      background: var(--color-bg-light);
      border: 2px solid var(--color-primary);
      border-radius: 12px;
      padding: 0;
      margin: 0.5rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      animation: expandIn 0.3s ease-out;
      overflow: hidden;
    }

    @keyframes expandIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .expanded-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      background: var(--color-bg);
      padding: 1.5rem 2rem;
      border-bottom: 1px solid var(--color-border);
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .expanded-title {
      flex: 1;
    }

    .expanded-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .close-expanded {
      border: 1px solid var(--color-border);
    }

    .close-expanded:hover {
      border-color: var(--color-primary);
      color: var(--color-primary);
      background: var(--color-primary-light);
    }

    .expanded-section {
      padding: 1.5rem 2rem;
    }

    .expanded-hero {
      padding: 2rem 2rem 1.5rem 2rem;
      display: flex;
      justify-content: center;
    }

    .expanded-hero img {
      width: 100%;
      display: block;
      aspect-ratio: 3 / 1;
      object-fit: cover;
      object-position: center;
      border-radius: 20px;
    }

    .expanded-section h4 {
      font-size: 1rem;
      margin-bottom: 0.75rem;
      color: var(--color-text);
      font-weight: 600;
    }

    .expanded-section p {
      color: var(--color-text-light);
      line-height: 1.6;
    }

    .expanded-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-top: 0.5rem;
    }

    .expanded-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .expanded-links a {
      background: var(--color-primary);
      color: var(--color-bg-light);
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: background 0.2s;
    }

    .expanded-links a:hover {
      background: var(--color-primary-dark);
    }

    .view-full-page {
      background: var(--color-bg);
      color: var(--color-text-light);
    }

    .view-full-page:hover {
      background: var(--color-border);
    }

    /* Save to SaaSDeck Button */
    .save-to-saasdeck-btn {
      background: transparent;
      border: 1px solid var(--color-border);
      color: var(--color-text-light);
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.75rem;
    }

    .expanded-actions .save-to-saasdeck-btn {
      margin-top: 0;
    }

    @media (max-width: 720px) {
      .expanded-header {
        flex-direction: column;
        align-items: stretch;
      }

      .expanded-actions {
        justify-content: flex-start;
      }

      .search-bar {
        flex-direction: column;
      }

      .search-container {
        min-width: 100%;
      }

      .category-dropdown {
        width: 100%;
      }
    }

    .save-to-saasdeck-btn:hover {
      border-color: var(--color-primary);
      color: var(--color-primary);
      background: var(--color-primary-light);
    }

    .save-to-saasdeck-btn.saved {
      border-color: var(--color-success);
      color: var(--color-success);
      background: var(--color-success-light);
    }

    .save-to-saasdeck-btn svg {
      width: 14px;
      height: 14px;
    }

    /* Save to SaaSDeck Modal */
    .saasdeck-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-dark);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }

    .saasdeck-modal.active {
      display: flex;
    }

    .saasdeck-modal-content {
      background: var(--color-bg-light);
      padding: 2rem;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      max-height: 80vh;
      overflow-y: auto;
      box-shadow: 0 20px 60px var(--overlay-dark);
    }

    .saasdeck-modal-content h3 {
      margin-bottom: 1rem;
      color: var(--color-text);
      font-size: 1.5rem;
    }

    .saasdeck-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1rem;
      max-height: 300px;
      overflow-y: auto;
    }

    .saasdeck-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem;
      border: 2px solid var(--color-border);
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .saasdeck-item:hover {
      border-color: var(--color-primary);
      background: var(--color-primary-light);
    }

    .saasdeck-item input[type="checkbox"] {
      width: 20px;
      height: 20px;
      cursor: pointer;
    }

    .saasdeck-item-info {
      flex: 1;
    }

    .saasdeck-item-name {
      font-weight: 600;
      color: var(--color-text);
      margin-bottom: 0.25rem;
    }

    .saasdeck-item-desc {
      font-size: 0.85rem;
      color: var(--color-text-light);
    }

    .create-new-saasdeck {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--color-border);
    }

    .create-new-saasdeck input {
      flex: 1;
      padding: 10px;
      border: 1px solid var(--color-border);
      border-radius: 6px;
      font-size: 0.95rem;
    }

    .create-new-saasdeck button {
      padding: 10px 16px;
      background: var(--color-success);
      color: var(--color-bg-light);
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
    }

    .create-new-saasdeck button:hover {
      background: var(--color-success-dark);
    }

    .modal-actions {
      display: flex;
      gap: 0.5rem;
      justify-content: flex-end;
      margin-top: 1.5rem;
    }

    .modal-actions button {
      padding: 10px 20px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s;
    }

    .btn-cancel-modal {
      background: var(--color-bg);
      color: var(--color-text-light);
    }

    .btn-cancel-modal:hover {
      background: var(--color-border);
    }

    .btn-save-modal {
      background: var(--color-primary);
      color: var(--color-bg-light);
    }

    .btn-save-modal:hover {
      background: var(--color-primary-dark);
    }


    /* Pagination */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin: 1rem 0 3rem;
      flex-wrap: wrap;
    }

    .pagination-btn {
      background: var(--color-bg-light);
      border: 1px solid var(--color-border);
      color: var(--color-text-light);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .pagination-btn:hover {
      border-color: var(--color-primary);
      color: var(--color-primary);
    }

    .pagination-btn.active {
      background: var(--color-primary);
      border-color: var(--color-primary);
      color: var(--color-bg-light);
    }

    .pagination-btn[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .pagination-ellipsis {
      color: var(--color-text-light);
      padding: 0 4px;
      font-weight: 600;
    }

    .pagination-status {
      color: var(--color-text-light);
      font-weight: 600;
      padding: 0 6px;
    }


    /* ======================
       Landing Page Sections
    ====================== */
    .landing-section {
      padding: 5rem 2rem;
    }

    .landing-content {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .landing-section h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #111827;
    }

    .landing-section > .landing-content > p {
      font-size: 1.1rem;
      color: #6b7280;
      margin-bottom: 2rem;
    }

    /* Preview Section */
    .preview-section {
      background: #f9fafb;
      box-shadow: inset 0 8px 12px -8px rgba(0, 0, 0, 0.15),
                  inset 0 -8px 12px -8px rgba(0, 0, 0, 0.15);
    }

    .preview-window {
      background: #1f2937;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      max-width: 900px;
      margin: 0 auto;
    }

    .preview-window-header {
      background: #374151;
      padding: 0.75rem 1rem;
      display: flex;
      gap: 0.5rem;
    }

    .preview-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #6b7280;
    }

    .preview-dot:nth-child(1) { background: #ef4444; }
    .preview-dot:nth-child(2) { background: #f59e0b; }
    .preview-dot:nth-child(3) { background: #10b981; }

    .preview-window-content {
      padding: 0;
    }

    .preview-image {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Mission Section */
    .mission-section {
      background: white;
    }

    .mission-statement {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #374151;
      max-width: 700px;
      margin: 0 auto 2.5rem auto;
    }

    .mission-values {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem 2rem;
    }

    .value-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.0rem;
      color: #6b7280;
    }

    .value-icon {
      color: #2563eb;
      font-weight: 700;
    }

    /* Pricing Section */
    .pricing-section {
      background: #f9fafb;
      box-shadow: inset 0 8px 12px -8px rgba(0, 0, 0, 0.15),
                  inset 0 -8px 12px -8px rgba(0, 0, 0, 0.15);
    }

    .pricing-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-card-mini {
      background: white;
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      padding: 1.5rem;
      text-align: left;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .pricing-card-mini:hover {
      border-color: #2563eb;
      box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    }

    .pricing-card-mini.featured {
      border-color: #2563eb;
      box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
    }

    .pricing-card-mini h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
      color: #111827;
    }

    .pricing-card-mini .price {
      font-size: 2rem;
      font-weight: 800;
      color: #2563eb;
      margin-bottom: 0.25rem;
    }

    .pricing-card-mini > p {
      font-size: 0.9rem;
      color: #6b7280;
      margin-bottom: 1rem;
    }

    .pricing-card-mini ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pricing-card-mini ul li {
      padding: 0.4rem 0;
      font-size: 0.9rem;
      color: #374151;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .pricing-card-mini ul li::before {
      content: '✓';
      color: #10b981;
      font-weight: 700;
    }

    .btn-secondary-link {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.75rem 1.5rem;
      background: white;
      color: #374151;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-secondary-link:hover {
      border-color: #2563eb;
      color: #2563eb;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .landing-section {
        padding: 3rem 1.5rem;
      }

      .landing-section h2 {
        font-size: 1.5rem;
      }

      .mission-statement {
        font-size: 1rem;
      }

      .mission-values {
        flex-direction: column;
        align-items: center;
      }

      .pricing-cards {
        grid-template-columns: 1fr;
      }
    }

