/* Cyberpunk Corporate Security Site Styles */
:root {
  --primary: #0a192f;
  --secondary: #172a45;
  --accent: #00f0ff;
  --accent-alt: #ff003c;
  --magenta: #BD10E0;
  --cyan: #009BFF;
  --text: #ccd6f6;
  --text-light: #8892b0;
  --signal-green: #00ff41;
  --signal-yellow: #ffd700;
  --signal-red: #ff003c;
  --border: rgba(189, 16, 224, 0.3);
  --card-bg: rgba(10, 25, 47, 0.7);
  --gradient-1: linear-gradient(135deg, #BD10E0 0%, #009BFF 100%);
  --gradient-2: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
  --shadow: 0 4px 24px rgba(189, 16, 224, 0.2);
  --shadow-lg: 0 10px 40px rgba(189, 16, 224, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.hero .container,
.solutions .container,
.why-cyberez .container,
.news .container,
.testimonials .container,
.trust-indicators .container,
.cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--text);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin: 0;
}

/* Reset potential conflicts */
main {
  padding-top: 0 !important;
}

.page-content {
  overflow: visible !important;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  margin-top: 80px; /* Account for fixed header */
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232a3f5f' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--magenta) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.hero-stats .stat {
  text-align: center;
}

.hero-stats .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--magenta);
  color: white;
}

.btn-primary:hover {
  background: #d424f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(189, 16, 224, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}

.btn-secondary:hover {
  background: rgba(0, 155, 255, 0.1);
  border-color: var(--accent);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background: var(--primary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--magenta);
}

.solution-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.solution-icon svg {
  width: 48px;
  height: 48px;
  display: block;
  overflow: visible;
}

.solution-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.solution-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.solution-card .learn-more {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.solution-card .learn-more:hover {
  transform: translateX(5px);
}

/* Why Cyberez Section */
.why-cyberez {
  padding: 100px 0;
  background: var(--secondary);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.advantage-card {
  text-align: center;
}

.advantage-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--magenta);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
}

.advantage-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.metrics-banner {
  background: var(--gradient-1);
  border-radius: 12px;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.metrics-banner .metric-item {
  color: white;
}

.metrics-banner .metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.metrics-banner .metric-label {
  font-size: 0.875rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* News Section */
.news {
  padding: 100px 0;
  background: var(--primary);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.view-all {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.view-all:hover {
  transform: translateX(5px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.news-card.featured {
  grid-column: span 2;
  background: var(--gradient-1);
  border: none;
}

.news-card:not(.featured):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--magenta);
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.news-category {
  color: var(--magenta);
  font-weight: 600;
}

.news-date {
  color: var(--text-muted);
}

.news-card h3 {
  margin-bottom: 0.5rem;
}

.news-card h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card h3 a:hover {
  color: var(--cyan);
}

.news-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.news-card.featured h3 a,
.news-card.featured p {
  color: white;
}

.news-card.featured .news-date {
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}

.testimonial-card blockquote {
  margin: 0 0 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--magenta);
}

.testimonial-card blockquote p {
  color: var(--text);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-details h4 {
  margin: 0 0 0.25rem 0;
  color: var(--text);
  font-size: 1rem;
}

.author-details p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Trust Indicators / Compliance Section */
.trust-indicators {
  padding: 100px 0;
  background: var(--primary);
  border-top: 1px solid var(--border);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.compliance-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--magenta);
}

.compliance-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-icon svg {
  width: 48px;
  height: 48px;
}

.compliance-card h3 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.25rem;
}

.compliance-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient-2);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

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

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.cta-feature svg {
  width: 20px;
  height: 20px;
  color: var(--signal-green);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 140px 0 60px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-card.featured {
    grid-column: span 1;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .metrics-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-card,
.advantage-card,
.news-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.solution-card:nth-child(1) { animation-delay: 0.1s; }
.solution-card:nth-child(2) { animation-delay: 0.2s; }
.solution-card:nth-child(3) { animation-delay: 0.3s; }