/* 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: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--card-border);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

[data-theme="light"] .stat-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.7) 100%);
  border-color: rgba(0, 0, 0, 0.06);
  border-top-color: rgba(255, 255, 255, 0.9);
}

.stat-item:hover {
  border-color: var(--card-hover-border);
  border-top-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 25px rgba(0, 242, 254, 0.18);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 34px;
  font-weight: 800;
  font-family: var(--font-title);
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.3));
}

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

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

.tech-tag {
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tech-tag:hover {
  color: #ffffff;
  border-color: var(--cyan-electric);
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.25);
  transform: translateY(-1px);
}

[data-theme="light"] .tech-tag {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.8) 100%);
  border-color: rgba(0, 0, 0, 0.06);
}

.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: 35px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  padding: 6px;
  border-radius: 36px;
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 10px 30px rgba(0, 0, 0, 0.35);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

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

.filter-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

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

.filter-btn.active {
  color: #080c14;
  background: var(--accent-gradient);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[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 rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.3);
  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.08em;
  color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 18px;
  border-radius: 14px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  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: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.8) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: var(--accent-primary);
  border-top-color: #ffffff;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(0, 242, 254, 0.25);
}

[data-theme="light"] .form-group input:focus, [data-theme="light"] .form-group textarea:focus, [data-theme="light"] .form-group select:focus {
  background: #ffffff;
  border-color: var(--accent-primary);
  box-shadow: 0 0 16px rgba(2, 132, 199, 0.2);
}

.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: var(--cyan-electric);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  right: 5px;
  height: 45%;
  border-radius: 50px 50px 30px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.05) 70%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.social-link svg, .social-link i {
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .social-link {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 245, 250, 0.8) 100%);
  border-color: rgba(0, 0, 0, 0.08);
  border-top-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.social-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
  border-color: rgba(0, 119, 181, 0.6);
  border-top-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.5), 0 0 14px rgba(0, 119, 181, 0.35);
  transform: translateY(-4px) scale(1.12);
}

.social-link:hover svg, .social-link:hover i {
  transform: scale(1.12);
}

[data-theme="light"] .social-link:hover {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
  border-color: #0077b5;
  color: #ffffff;
}

.admin-gate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.06) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.admin-gate-btn:hover {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.28) 0%, rgba(127, 0, 255, 0.18) 100%);
  border-color: rgba(0, 242, 254, 0.6);
  border-top-color: #ffffff;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 8px 25px rgba(0, 242, 254, 0.35);
  transform: translateY(-2px) scale(1.02);
  color: #ffffff;
}

[data-theme="light"] .admin-gate-btn {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(37, 99, 235, 0.06) 100%);
  border: 1px solid rgba(2, 132, 199, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--accent-primary);
}

[data-theme="light"] .admin-gate-btn:hover {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.22) 0%, rgba(37, 99, 235, 0.15) 100%);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.2);
}


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

/* Glass Panel Base with 2026 Liquid Glass Depth */
.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 36px -10px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  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(
    360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(var(--panel-rgb, 0, 242, 254), 0.12),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  pointer-events: none;
}
[data-theme="light"] .glass-panel::before {
  background: radial-gradient(
    300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(var(--panel-rgb, 2, 132, 199), 0.08),
    transparent 85%
  );
}
.glass-panel:hover {
  transform: translateY(-5px) scale(1.006);
  border-color: rgba(var(--panel-rgb, 0, 242, 254), 0.4);
  border-top-color: rgba(255, 255, 255, 0.35);
  box-shadow: 
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.25),
    0 20px 45px -10px rgba(var(--panel-rgb, 0, 242, 254), 0.25),
    0 0 30px -5px rgba(var(--panel-rgb, 0, 242, 254), 0.15);
}
.glass-panel:hover::before {
  opacity: 1;
}
.glass-panel > * {
  position: relative;
  z-index: 2;
}

/* Bento Column spans mapping — full 1-12 range */
.bento-col-1  { grid-column: span 1; }
.bento-col-2  { grid-column: span 2; }
.bento-col-3  { grid-column: span 3; }
.bento-col-4  { grid-column: span 4; }
.bento-col-5  { grid-column: span 5; }
.bento-col-6  { grid-column: span 6; }
.bento-col-7  { grid-column: span 7; }
.bento-col-8  { grid-column: span 8; }
.bento-col-9  { grid-column: span 9; }
.bento-col-10 { grid-column: span 10; }
.bento-col-11 { grid-column: span 11; }
.bento-col-12 { grid-column: span 12; }

@media (max-width: 1024px) {
  .bento-col-12, .bento-col-11, .bento-col-10, .bento-col-9,
  .bento-col-8, .bento-col-7 { grid-column: span 12; }
  .bento-col-6, .bento-col-5, .bento-col-4, .bento-col-3 { grid-column: span 6; }
  .bento-col-2 { grid-column: span 4; }
  .bento-col-1 { grid-column: span 2; }
}
@media (max-width: 768px) {
  .bento-col-12, .bento-col-11, .bento-col-10, .bento-col-9,
  .bento-col-8, .bento-col-7, .bento-col-6, .bento-col-5,
  .bento-col-4, .bento-col-3, .bento-col-2 { grid-column: span 4; }
  .bento-col-1 { grid-column: span 2; }
}
@media (max-width: 480px) {
  .bento-col-12, .bento-col-11, .bento-col-10, .bento-col-9,
  .bento-col-8, .bento-col-7, .bento-col-6, .bento-col-5,
  .bento-col-4, .bento-col-3, .bento-col-2, .bento-col-1 { 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: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid var(--card-border);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 12px 36px -10px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  transition: var(--transition-smooth);
}
.pricing-card.premium-plan {
  border-color: rgba(139, 92, 246, 0.4);
  border-top-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(8, 12, 20, 0.7) 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 16px 40px rgba(139, 92, 246, 0.18);
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--card-hover-border);
  border-top-color: rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 22px 50px -10px var(--accent-glow);
}
.pricing-card.premium-plan:hover {
  border-color: rgba(167, 139, 250, 0.7);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 25px 55px -10px rgba(139, 92, 246, 0.35);
}
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.4);
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}
.pricing-card .price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 5px;
}
.pricing-card .price-desc {
  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: 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: var(--accent-primary);
  filter: drop-shadow(0 0 6px var(--accent-primary));
  flex-shrink: 0;
}
.pricing-card.premium-plan ul.pricing-features li svg {
  color: #8b5cf6;
  filter: drop-shadow(0 0 6px #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: var(--transition-smooth);
}
.pricing-card .btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--card-border);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.pricing-card .btn-secondary:hover {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
  color: #ffffff;
}
.pricing-card .btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}
.pricing-card .btn-primary:hover {
  background: linear-gradient(135deg, #9f7aea 0%, #6b46c1 100%);
  border-color: #ffffff;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

/* 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;
  }
}

/* ==========================================================================
   2026-ERA MODERN CONTACT PAGE SYSTEM (BENTO + LIQUID GLASS + MICRO-EFFECTS)
   ========================================================================== */
.c26-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #00f2fe;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
}

.c26-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: liveStatusPulse 2s infinite;
}

.c26-panel {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 16, 30, 0.92) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(0, 242, 254, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.7), 
    0 0 35px rgba(0, 242, 254, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] .c26-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 245, 249, 0.95) 100%);
  border: 1px solid rgba(0, 184, 255, 0.25);
  border-top: 1px solid #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 184, 255, 0.05);
}

/* Ambient glow corner orb */
.c26-panel::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.18) 0%, rgba(79, 172, 254, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
}

.c26-section-heading {
  font-size: 13px;
  font-weight: 700;
  color: #00f2fe;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 28px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c26-section-heading:first-of-type {
  margin-top: 0;
}

.c26-section-heading span.num-pill {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #00f2fe;
}

/* Form Input Layout */
.c26-input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .c26-input-grid {
    grid-template-columns: 1fr;
  }
  .c26-panel {
    padding: 24px 18px;
  }
}

.c26-input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c26-input-wrapper label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[data-theme="light"] .c26-input-wrapper label {
  color: #1e293b;
}

.c26-field-container {
  position: relative;
  display: flex;
  align-items: center;
}

.c26-field-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.2s ease;
}

.c26-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 14px 16px 14px 46px;
  color: #ffffff;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .c26-input {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
  color: #0f172a;
}

.c26-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00f2fe;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.c26-input:focus + .c26-field-icon,
.c26-field-container:focus-within .c26-field-icon {
  color: #00f2fe;
  filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.6));
}

textarea.c26-input {
  padding-left: 16px;
  min-height: 120px;
  resize: vertical;
}

/* Service / Objective Choice Chips */
.c26-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.c26-choice-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none;
}

.c26-choice-card input[type="radio"],
.c26-choice-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.c26-choice-card:hover {
  background: rgba(0, 242, 254, 0.06);
  border-color: rgba(0, 242, 254, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 242, 254, 0.12);
}

.c26-choice-card.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.18) 0%, rgba(79, 172, 254, 0.08) 100%);
  border-color: #00f2fe;
  border-top-color: #ffffff;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.c26-choice-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.c26-choice-card.active .c26-choice-icon {
  background: #00f2fe;
  color: #080c14;
  border-color: #00f2fe;
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
}

.c26-choice-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

[data-theme="light"] .c26-choice-label {
  color: #0f172a;
}

.c26-choice-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Timeline & Budget Selector Horizontal Pills */
.c26-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.c26-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c26-pill-btn:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.c26-pill-btn.active {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.25) 0%, rgba(79, 172, 254, 0.15) 100%);
  border-color: #00f2fe;
  color: #00f2fe;
  box-shadow: 0 0 16px rgba(0, 242, 254, 0.25);
}

/* Live Cost Estimator 2026 Card */
.c26-estimator-box {
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.c26-estimator-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #00f2fe;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c26-estimator-total {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-title);
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 242, 254, 0.5);
}

/* 2026 Holographic Dropzone */
.c26-dropzone {
  border: 1.5px dashed rgba(0, 242, 254, 0.35);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.c26-dropzone:hover, .c26-dropzone.dragover {
  background: rgba(0, 242, 254, 0.06);
  border-color: #00f2fe;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
  transform: translateY(-2px);
}

.c26-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.c26-dropzone-icon {
  width: 28px;
  height: 28px;
  color: #00f2fe;
  margin-bottom: 6px;
}

/* Submit Action Button with Particle Beam */
.c26-btn-submit {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 50%, #7f00ff 100%);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  color: #080c14;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 242, 254, 0.4), 
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c26-btn-submit::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(30deg);
  animation: beamSweep 4s infinite linear;
}

@keyframes beamSweep {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.c26-btn-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 40px rgba(0, 242, 254, 0.6), 
    0 0 60px rgba(127, 0, 255, 0.35);
}

.c26-btn-submit:active {
  transform: scale(0.98);
}

.c26-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Success Confirmation Overlay Modal */
.c26-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.c26-modal-overlay.open {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.c26-modal-box {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(0, 242, 254, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 242, 254, 0.25);
  position: relative;
  animation: modalPopIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPopIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.c26-success-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
  border: 2px solid #22c55e;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 28px;
  margin-bottom: 20px;
}

.c26-ticket-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: monospace;
  font-size: 13px;
  color: #00f2fe;
  margin: 14px 0 20px;
}

.c26-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
  margin-top: 16px;
}

.c26-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* Interconnects Micro-Cards */
.c26-contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 14px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c26-contact-method:hover {
  background: rgba(0, 242, 254, 0.08);
  border-color: rgba(0, 242, 254, 0.35);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.15);
}

.c26-method-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.15) 0%, rgba(79, 172, 254, 0.05) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: #00f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SLA Assurance Grid */
.c26-sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .c26-sla-grid {
    grid-template-columns: 1fr;
  }
}

.c26-sla-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.c26-sla-card .sla-val {
  font-size: 16px;
  font-weight: 800;
  color: #00f2fe;
  margin-bottom: 2px;
}

.c26-sla-card .sla-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
