/* Page-Specific Component Layouts for NDTechHub */

/* ==========================================
   1. HOME PAGE SPECIFICS
   ========================================== */
.home-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero-title { font-size: 30px; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  height: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--card-border);
  transition: var(--transition-smooth);
}

[data-theme="light"] .stat-item {
  background: rgba(0, 0, 0, 0.02);
}

.stat-item:hover {
  border-color: var(--card-hover-border);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-title);
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   2. SERVICES PAGE SPECIFICS
   ========================================== */
.services-tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tech-tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

[data-theme="light"] .tech-tag {
  background: rgba(0, 0, 0, 0.02);
}

.service-card-feature-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-feature-list li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-feature-list li svg {
  color: var(--accent-primary);
  width: 14px;
  height: 14px;
}

/* ==========================================
   3. SKILLS PAGE SPECIFICS
   ========================================== */
.skills-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.skill-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.skill-name {
  color: var(--text-primary);
}

.skill-percentage {
  color: var(--accent-primary);
}

.skill-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

[data-theme="light"] .skill-track {
  background: rgba(0, 0, 0, 0.05);
}

.skill-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent-gradient-text);
  width: 0; /* Animated in via JS or class */
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

/* ==========================================
   4. PORTFOLIO PAGE SPECIFICS
   ========================================== */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  background: var(--glass-bg);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .filter-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.filter-btn.active {
  color: #080c14;
  background: var(--accent-gradient);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.25);
}

[data-theme="light"] .filter-btn.active {
  color: #ffffff;
}

.portfolio-img-container {
  width: 100%;
  height: 180px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--card-border);
  position: relative;
  background: #0d1321;
}

/* Visual Mockups using SVGs/CSS */
.mockup-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e1726 0%, #152238 100%);
  color: var(--accent-primary);
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 800;
  position: relative;
}

.mockup-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.portfolio-item {
  display: flex;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  display: none;
}

/* ==========================================
   5. ABOUT PAGE SPECIFICS
   ========================================== */
.ceo-quote-block {
  display: flex;
  gap: 24px;
  align-items: center;
}

.ceo-avatar-frame {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  padding: 4px;
  background: var(--bg-secondary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--accent-glow);
}

.ceo-avatar-icon {
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080c14;
  font-size: 28px;
  font-weight: 800;
}

.ceo-quote-content blockquote {
  font-style: italic;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.ceo-signature {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-primary);
}

@media (max-width: 600px) {
  .ceo-quote-block {
    flex-direction: column;
    text-align: center;
  }
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 20px;
}

.timeline-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  background: var(--glass-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 8px;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-primary);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==========================================
   6. CONTACT PAGE SPECIFICS
   ========================================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-group select option {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

[data-theme="light"] .form-group input, [data-theme="light"] .form-group textarea, [data-theme="light"] .form-group select {
  background: rgba(0, 0, 0, 0.02);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

[data-theme="light"] .form-group input:focus, [data-theme="light"] .form-group textarea:focus, [data-theme="light"] .form-group select:focus {
  background: rgba(0, 0, 0, 0.04);
}

.form-status {
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  display: none;
  animation: fadeIn 0.4s ease;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* FAQ Item Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

[data-theme="light"] .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 0;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 120px;
  padding-top: 8px;
}

.faq-icon-cross {
  font-size: 16px;
  transition: transform 0.4s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon-cross {
  transform: rotate(45deg);
  color: var(--accent-primary);
}

/* ==========================================
   7. TEAM PAGE SPECIFICS
   ========================================== */
.team-profile {
  grid-column: span 4;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.bento-card:hover .team-avatar {
  transform: scale(1.05);
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px var(--accent-glow);
}

.role-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: 8px;
  display: block;
}

.social-link {
  color: #00a0dc; /* Premium LinkedIn Blue */
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 160, 220, 0.08);
  border: 1px solid rgba(0, 160, 220, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 8px rgba(0, 160, 220, 0.05);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .social-link {
  background: rgba(0, 160, 220, 0.05);
  border-color: rgba(0, 160, 220, 0.15);
}

.social-link:hover {
  color: #ffffff;
  background: #0077b5;
  border-color: #0077b5;
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
  transform: translateY(-3px) scale(1.05);
}

[data-theme="light"] .social-link:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
}

.admin-gate-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.admin-gate-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  transform: translateY(-1px);
}

[data-theme="light"] .admin-gate-btn {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .admin-gate-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}


/* ==========================================
   8. NEW PREMIUM SECTIONS (MARQUEE, MATRIX, PRICING, TESTIMONIALS)
   ========================================== */

/* Glass Panel Base mapping to Bento Card style */
.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  color: inherit;
}
.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    300px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(0, 242, 254, 0.06),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}
[data-theme="light"] .glass-panel::before {
  background: radial-gradient(
    250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(2, 132, 199, 0.04),
    transparent 85%
  );
}
.glass-panel:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: 0 12px 35px -12px var(--accent-glow);
}
.glass-panel:hover::before {
  opacity: 1;
}
.glass-panel > * {
  position: relative;
  z-index: 2;
}

/* Bento Column spans mapping */
.bento-col-12 { grid-column: span 12; }
.bento-col-8  { grid-column: span 8; }
.bento-col-6  { grid-column: span 6; }
.bento-col-4  { grid-column: span 4; }
.bento-col-3  { grid-column: span 3; }

@media (max-width: 1024px) {
  .bento-col-12, .bento-col-8 { grid-column: span 12; }
  .bento-col-6, .bento-col-4, .bento-col-3 { grid-column: span 6; }
}
@media (max-width: 768px) {
  .bento-col-12, .bento-col-8, .bento-col-6, .bento-col-4, .bento-col-3 { grid-column: span 4; }
}
@media (max-width: 480px) {
  .bento-col-12, .bento-col-8, .bento-col-6, .bento-col-4, .bento-col-3 { grid-column: span 1 !important; }
}

/* Marquee Section Styles */
.marquee-section {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
  width: 100%;
}
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
}
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary) 0%, transparent 100%);
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  animation: marquee 35s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.trust-logo {
  height: 38px;
  max-width: 150px;
  opacity: 0.8;
  filter: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  object-fit: contain;
}
[data-theme="light"] .trust-logo {
  filter: none;
  opacity: 0.75;
}
.trust-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.tech-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}
.tech-pill:hover {
  background: rgba(0, 184, 255, 0.08);
  border-color: rgba(0, 184, 255, 0.2);
  color: var(--accent-primary);
}
.tech-pill svg,
.tech-pill-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
.tech-pill svg:not([style*="color"]) {
  color: var(--accent-primary);
}

/* Technologies Matrix Section */
.tech-matrix-section {
  padding: 5rem 0;
}
.matrix-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.matrix-title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.matrix-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.matrix-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.matrix-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: 0 12px 35px -12px var(--accent-glow);
}
.matrix-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.matrix-card .card-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}
.icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}
.tech-group {
  margin-bottom: 24px;
}
.tech-group:last-child {
  margin-bottom: 0;
}
.tech-group h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-tags span {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
[data-theme="light"] .tech-tags span {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.05);
}
.tech-tags span img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.tech-tags span:hover {
  background: rgba(0, 184, 255, 0.08);
  border-color: rgba(0, 184, 255, 0.2);
  color: var(--accent-primary);
  transform: translateY(-1px);
}

/* Testimonials section details */
#public-testimonials-feed .glass-panel {
  min-height: 280px;
}
#public-testimonials-feed svg.icon {
  width: 16px;
  height: 16px;
}

/* Pricing Section Styles */
.pricing-container {
  padding: 5rem 0;
  width: 100%;
}
.pricing-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: #080c14; /* Force solid dark background for PDF rendering */
}
.pricing-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 0;
  color: #f3f4f6;
  color: var(--text-primary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: var(--transition-smooth);
}
.pricing-card.premium-plan {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(8, 12, 20, 0.5) 100%);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(0, 242, 254, 0.15);
  box-shadow: 0 20px 40px -15px var(--accent-glow);
}
.pricing-card.premium-plan:hover {
  box-shadow: 0 20px 40px -15px rgba(139, 92, 246, 0.18);
  border-color: #a78bfa;
}
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #8b5cf6;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f3f4f6;
  color: var(--text-primary);
}
.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  color: #f3f4f6;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
}
.pricing-card .price span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  color: var(--text-muted);
  margin-left: 5px;
}
.pricing-card .price-desc {
  color: #9ca3af;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.pricing-card ul.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.pricing-card ul.pricing-features li {
  font-size: 14px;
  color: #9ca3af;
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: #00f2fe;
  color: var(--accent-primary);
  flex-shrink: 0;
}
.pricing-card.premium-plan ul.pricing-features li svg {
  color: #8b5cf6;
}
.pricing-card .btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: var(--transition-smooth);
}
.pricing-card .btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  color: #f3f4f6;
  color: var(--text-primary);
}
.pricing-card .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 242, 254, 0.3);
  border-color: var(--card-hover-border);
}
.pricing-card .btn-primary {
  background: #8b5cf6;
  border: 1px solid #8b5cf6;
  color: #ffffff;
}
.pricing-card .btn-primary:hover {
  background: #7c3aed;
  border-color: #7c3aed;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* PDF print styling to ensure print layout renders cleanly */
@media print {
  body {
    background: #080c14 !important;
    color: #ffffff !important;
  }
  .pricing-wrapper {
    background: #080c14 !important;
    color: #ffffff !important;
    padding: 30px !important;
    box-sizing: border-box;
  }
  .pricing-card {
    background: #0e1420 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
  }
}
