/* ==========================================================================
   TIQPlus Industry & Vertical SEO Landing Pages Stylesheet
   ========================================================================== */

/* Color themes definitions */
.theme-teal {
  --theme-primary: #0ad1c4;
  --theme-primary-rgb: 10, 209, 196;
  --theme-accent: #00796b;
  --theme-gradient: linear-gradient(135deg, rgba(10, 209, 196, 0.12) 0%, rgba(12, 20, 39, 0) 100%);
  --theme-shadow: 0 12px 30px rgba(10, 209, 196, 0.15);
}

.theme-amber {
  --theme-primary: #ffaa00;
  --theme-primary-rgb: 255, 170, 0;
  --theme-accent: #e65100;
  --theme-gradient: linear-gradient(135deg, rgba(255, 170, 0, 0.12) 0%, rgba(12, 20, 39, 0) 100%);
  --theme-shadow: 0 12px 30px rgba(255, 170, 0, 0.15);
}

.theme-blue {
  --theme-primary: #3b82f6;
  --theme-primary-rgb: 59, 130, 246;
  --theme-accent: #1d4ed8;
  --theme-gradient: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(12, 20, 39, 0) 100%);
  --theme-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.theme-purple {
  --theme-primary: #a855f7;
  --theme-primary-rgb: 168, 85, 247;
  --theme-accent: #6b21a8;
  --theme-gradient: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(12, 20, 39, 0) 100%);
  --theme-shadow: 0 12px 30px rgba(168, 85, 247, 0.15);
}

.theme-emerald {
  --theme-primary: #10b981;
  --theme-primary-rgb: 16, 185, 129;
  --theme-accent: #047857;
  --theme-gradient: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(12, 20, 39, 0) 100%);
  --theme-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

/* ==========================================================================
   Global Overrides & Dark Theme Standardisation
   ========================================================================== */
body {
  background: #0c1427 !important;
  color: #f3f4f6 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

/* Fix heading wrapping limitations from site.css */
.industry-page h1,
.industry-page h2 {
  max-width: none !important;
}

/* Standardise section muted styling and borders for dark mode */
.section--muted {
  background: #090f1e !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Harmonise global header and footer to match the dark theme */
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px) !important;
  background: rgba(12, 20, 39, 0.85) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background 0.3s ease;
}

.site-header .logo-text {
  color: #ffffff !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

.site-header .nav-links a,
.site-header .nav-dropdown-trigger {
  color: #9ca3af !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-header .nav-links a:hover,
.site-header .nav-dropdown-wrapper:hover .nav-dropdown-trigger {
  color: #ffffff !important;
}

/* Customise header CTA button to match dynamic industry accent */
.site-header .btn-primary {
  background: var(--theme-primary) !important;
  color: #0c1427 !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  box-shadow: 0 4px 12px rgba(var(--theme-primary-rgb), 0.25) !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.site-header .btn-primary:hover {
  background: #ffffff !important;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-1px);
}

.site-footer {
  background: #090f1e !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 4rem 0 !important;
  color: #9ca3af !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}

.site-footer .footer-grid {
  border-top: none !important;
  padding-top: 0 !important;
}

.site-footer .footer-label {
  color: var(--theme-primary) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 700;
}

.site-footer .footer-copy {
  color: #9ca3af !important;
}

.site-footer a {
  color: #9ca3af !important;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff !important;
}

.industry-page {
  font-family: 'Inter', system-ui, sans-serif;
  color: #f3f4f6;
  background-color: #0c1427;
  overflow-x: hidden;
}

/* Hero Section */
.industry-hero {
  position: relative;
  padding: 8rem 0 5rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c1427;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background: radial-gradient(circle 450px at 50% 30%, rgba(var(--theme-primary-rgb), 0.15) 0%, rgba(12, 20, 39, 0) 100%);
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--theme-primary-rgb), 0.12);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.3);
  color: var(--theme-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(var(--theme-primary-rgb), 0.08);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--theme-primary);
  box-shadow: 0 0 10px var(--theme-primary);
}

.industry-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-primary);
  color: #0c1427;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(var(--theme-primary-rgb), 0.4);
  text-decoration: none;
}

.hero-cta .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--theme-primary-rgb), 0.6);
  background: #ffffff;
}

.hero-cta .button--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.hero-cta .button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Sections Styling */
.section {
  padding: 6rem 0;
  position: relative;
}

.section--muted {
  background: #090f1e;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--theme-primary);
}

.section-sub {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Pain Points Grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--theme-primary-rgb), 0.25);
  background: var(--theme-gradient);
  box-shadow: var(--theme-shadow);
}

.pain-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(var(--theme-primary-rgb), 0.1);
  color: var(--theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pain-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pain-card p {
  color: #9ca3af;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--theme-primary);
  opacity: 0.7;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #9ca3af;
  line-height: 1.6;
  font-size: 1rem;
}

/* Two-column layout */
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.two-column h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.two-column .button {
  display: inline-flex;
  background: var(--theme-primary);
  color: #0c1427;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(var(--theme-primary-rgb), 0.3);
  transition: all 0.3s ease;
}

.two-column .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--theme-primary-rgb), 0.5);
  background: #ffffff;
}

/* Standards List */
.standards-list-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

.standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.standards-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 3px solid var(--theme-primary);
  transition: all 0.2s ease;
}

.standards-list li:hover {
  background: rgba(255, 255, 255, 0.04);
}

.standards-list li strong {
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
}

.standard-code {
  font-family: monospace;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--theme-primary);
  font-weight: 600;
}

/* Accordion FAQs */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(var(--theme-primary-rgb), 0.2);
  background: rgba(var(--theme-primary-rgb), 0.03);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: var(--theme-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #9ca3af;
  line-height: 1.6;
  font-size: 1rem;
}

/* Call to Action Box */
.cta-box {
  background: radial-gradient(ellipse at top right, rgba(var(--theme-primary-rgb), 0.15), transparent), rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.25);
  padding: 4rem 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--theme-shadow);
}

.cta-box h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.cta-box p {
  font-size: 1.15rem;
  color: #9ca3af;
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.cta-box .button {
  display: inline-flex;
  background: var(--theme-primary);
  color: #0c1427;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(var(--theme-primary-rgb), 0.4);
}

/* Urgency Alert Banner */
.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fecaca;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.05);
}

.urgency-icon {
  color: #ef4444;
  flex-shrink: 0;
}

/* Modular Units Section */
.modular-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.modular-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modular-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--theme-primary-rgb), 0.25);
  background: var(--theme-gradient);
  box-shadow: var(--theme-shadow);
}

.modular-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.modular-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--theme-primary);
  background: rgba(var(--theme-primary-rgb), 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.modular-duration {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

.modular-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
  flex-grow: 1;
}

.modular-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

.modular-funding {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

.modular-arrow {
  color: var(--theme-primary);
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.modular-card:hover .modular-arrow {
  transform: translateX(4px);
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th, 
.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feat-name {
  font-weight: 600;
  color: #e5e7eb;
}

.comparison-table td {
  color: #9ca3af;
}

.feat-highlight {
  color: var(--theme-primary) !important;
  font-weight: 600;
  background: rgba(var(--theme-primary-rgb), 0.03);
}

.comparison-table th:last-child {
  border-bottom: 2px solid var(--theme-primary);
  background: rgba(var(--theme-primary-rgb), 0.04);
}

@media (max-width: 640px) {
  .comparison-table-wrapper {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .comparison-table th, 
  .comparison-table td {
    padding: 1rem;
    font-size: 0.85rem;
  }
}


/* Two-column Hero Layout */
.two-column-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: left;
}

@media (max-width: 968px) {
  .two-column-hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.two-column-hero .hero-content {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

@media (max-width: 968px) {
  .two-column-hero .hero-content {
    text-align: center;
  }
  .two-column-hero .hero-cta {
    justify-content: center;
  }
}

/* Hero Software Console Wrapper */
.hero-graphic {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-graphic-card {
  width: 100%;
  max-width: 480px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    var(--theme-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.hero-graphic-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.card-glass-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-dot-red, .card-dot-yellow, .card-dot-green {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.card-dot-red { background: #ff5f56; }
.card-dot-yellow { background: #ffbd2e; }
.card-dot-green { background: #27c93f; }

.card-tab-title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ca3af;
  font-family: monospace;
}

.hero-img-element {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   Mobile-First Frontline Showcase Section
   ========================================================================== */
.section-mobile-showcase {
  background: #0c1427;
  position: relative;
  overflow: hidden;
}

.mobile-showcase-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.mobile-benefits-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.mobile-benefits-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.benefit-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--theme-primary-rgb), 0.12);
  color: var(--theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.3);
  box-shadow: 0 4px 12px rgba(var(--theme-primary-rgb), 0.08);
}

.benefit-icon {
  stroke-width: 2.5;
}

.mobile-benefits-list strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.mobile-benefits-list p {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.55;
  margin: 0;
}

/* Smartphone CSS Mockup */
.mobile-showcase-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  z-index: 2;
}

.mobile-device-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  background: #0c1427;
  border: 11px solid #1e293b;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 12px rgba(0, 0, 0, 0.9);
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.phone-frame:hover {
  transform: translateY(-8px) rotate(1.5deg) scale(1.02);
  border-color: rgba(var(--theme-primary-rgb), 0.5);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #000000;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-speaker {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: #27272a;
  border-radius: 2px;
  z-index: 11;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.phone-glow {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: var(--theme-primary);
  opacity: 0.12;
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
  border-radius: 40px;
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.phone-frame:hover + .phone-glow {
  opacity: 0.22;
  filter: blur(45px);
}

/* ==========================================================================
   E-E-A-T Compliance & Verification Panel Styles
   ========================================================================== */
.hero-verification {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #9ca3af;
  margin-top: 1.75rem;
  width: 100%;
}

@media (max-width: 968px) {
  .hero-verification {
    justify-content: center;
  }
}

.verify-icon {
  color: var(--theme-primary);
  flex-shrink: 0;
}

.verify-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 550;
  transition: color 0.2s ease;
}

.verify-link:hover {
  color: var(--theme-primary);
}

.section-eeat {
  background: #090f1e;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.eeat-reviewer-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.eeat-reviewer-card:hover {
  border-color: rgba(var(--theme-primary-rgb), 0.25);
  transform: translateY(-2px);
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 1.5rem 0 1.25rem 0;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(var(--theme-primary-rgb), 0.12);
  color: var(--theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.3);
}

.reviewer-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.reviewer-title {
  font-size: 0.85rem;
  color: var(--theme-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 2px;
}

.reviewer-bio {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.verification-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--theme-primary-rgb), 0.06);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.18);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.stamp-icon {
  color: var(--theme-primary);
}

/* Citations & Trust Badges */
.citations-container h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.citations-sub {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.citations-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.citations-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.citations-list li:last-child {
  border-bottom: none;
}

.citation-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #e5e7eb;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.citation-link:hover {
  color: var(--theme-primary);
  padding-left: 4px;
}

.citation-arrow {
  color: #9ca3af;
  transition: transform 0.2s ease, color 0.2s ease;
}

.citation-link:hover .citation-arrow {
  transform: translate(2px, -2px);
  color: var(--theme-primary);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: background 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.03);
}

.badge-title {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.badge-desc {
  font-size: 0.725rem;
  color: #9ca3af;
  display: block;
}

@media (max-width: 640px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


