/* HighTech Industry News - Static Site Styles */
:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --accent: #ed8936;
  --accent-hover: #dd6b20;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #fafaf8;
  --bg-alt: #edf2f7;
  --bg-warm: #f8f6f3;
  --card-bg: #ffffff;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: var(--bg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 100px;
  width: auto;
  animation: logoFadeIn 1s ease-out;
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

/* Logo Animations */
@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle "live" indicator - small pulsing dot */
.logo {
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 137, 54, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(237, 137, 54, 0);
  }
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 12px;
  border-radius: 4px;
}

.nav a:hover {
  color: var(--primary);
  background: var(--bg-alt);
}

.nav a.active {
  color: var(--primary);
  background: var(--bg-alt);
  border-bottom: 3px solid var(--accent);
}

.btn-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: var(--accent-hover);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
section.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 50px 0;
}

section.checklist + section {
  padding-top: 30px;
}

section:nth-child(even) {
  background: var(--bg-alt);
}

.section-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

/* Checklist */
.checklist {
  background: var(--bg-alt);
  padding: 40px 0 20px 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-left: 3px solid var(--accent);
}

.checklist-item .check {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Report Preview */
.report-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.report-section img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Report Carousel */
.report-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-slides {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
}

.carousel-slides img {
  width: 100%;
  flex-shrink: 0;
  height: auto;
  border-radius: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot:hover {
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--accent);
}

.report-content h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.report-content p {
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  background: var(--primary);
  color: white;
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
}

.testimonial-company {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.testimonial-logo {
  height: 45px;
  width: auto;
  max-width: 200px;
  margin-bottom: 15px;
  object-fit: contain;
  border-radius: 6px;
}

.testimonial blockquote {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Services Page */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  border-top: 3px solid var(--primary);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.service-card li:last-child {
  border-bottom: none;
}

/* Teams Grid */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.team-card {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  border-left: 3px solid var(--accent);
  text-align: center;
}

.team-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.team-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.topic-item {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  font-weight: 500;
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}

.topic-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
}

/* About Page */
.about-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-intro img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.differentiators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.differentiator {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
  border-top: 3px solid var(--accent);
}

.differentiator h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Contact Page */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-content p {
  margin-bottom: 30px;
}

.contact-email {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
}

.contact-email a {
  color: var(--accent);
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 70px;
}

.footer-nav {
  display: flex;
  gap: 25px;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    gap: 15px;
  }
  
  .nav.open {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .report-section,
  .about-intro {
    grid-template-columns: 1fr;
  }
  
  .about-intro {
    text-align: center;
  }
  
  .about-intro img {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
