/**
 * SEO-friendly page styles for BrokeCoder
 * Clean, readable, mobile-responsive styles for content pages
 */

/* Navigation */
.main-nav {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-bottom: 2px solid #0f3460;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #e94560;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #e94560;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e94560;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* App Container */
.app-container {
  min-height: calc(100vh - 200px);
  background: #0f0f23;
  color: #e0e0e0;
}

.app-container.hidden {
  display: none;
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
  color: #e0e0e0;
  padding: 3rem 0 1rem;
  border-top: 2px solid #0f3460;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #e94560;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #e94560;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #0f3460;
  color: #888;
  max-width: 1200px;
  margin: 0 auto;
}

/* Consent banner */
.consent-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 420px;
  width: min(420px, 92vw);
  background: rgba(15, 15, 35, 0.96);
  color: #e0e0e0;
  border: 1px solid rgba(233, 69, 96, 0.35);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  padding: 16px;
  display: grid;
  gap: 12px;
  z-index: 1100;
  backdrop-filter: blur(4px);
}

.consent-copy {
  font-size: 14px;
  line-height: 1.5;
}

.consent-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.consent-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.consent-btn {
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(233, 69, 96, 0.35);
  background: transparent;
  color: #e0e0e0;
  transition: all 0.2s ease;
}

.consent-btn.primary {
  background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(233, 69, 96, 0.35);
}

.consent-btn:hover,
.consent-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.consent-btn.ghost {
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
  .consent-banner {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .consent-actions {
    justify-content: flex-start;
  }
}

/* Common page styles */
.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.2rem;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Landing Page */
.landing-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
  border-radius: 20px;
  margin-bottom: 4rem;
}

.hero-section h1 {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #e94560;
  border: 2px solid #e94560;
}

.btn-secondary:hover {
  background: rgba(233, 69, 96, 0.1);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: #e94560;
  margin-bottom: 0.5rem;
}

.stat span {
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* Features Section */
.features-section,
.how-it-works-section,
.blog-preview-section,
.careers-preview-section,
.final-cta-section {
  margin-bottom: 5rem;
}

.features-section h2,
.how-it-works-section h2,
.blog-preview-section h2,
.careers-preview-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
}

.section-intro {
  text-align: center;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.2);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #e94560;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: #e94560;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #b0b0b0;
  line-height: 1.6;
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.4) 0%, rgba(26, 26, 46, 0.4) 100%);
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e94560 0%, #ff6b9d 100%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.step p {
  color: #b0b0b0;
  line-height: 1.6;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* Blog Preview */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.view-all-link {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.view-all-link:hover {
  color: #ff6b9d;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%);
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.2);
  overflow: hidden;
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: #e94560;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.blog-card-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.blog-category {
  color: #e94560;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.blog-card h3 {
  margin-bottom: 1rem;
}

.blog-card h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card h3 a:hover {
  color: #e94560;
}

.blog-card p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #ff6b9d;
}

/* Career Preview */
.career-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.career-preview-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.2);
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.career-preview-card:hover {
  transform: translateY(-5px);
  border-color: #e94560;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.career-preview-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.career-preview-card p {
  color: #b0b0b0;
  margin-bottom: 1rem;
}

.salary {
  display: block;
  color: #e94560;
  font-weight: 600;
  font-size: 1.1rem;
}

.view-all-card {
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
  border-color: #e94560;
}

/* Final CTA */
.final-cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
  border-radius: 20px;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.2rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
}

/* Prose content (blog posts, etc.) */
.prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.prose h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.prose h2 {
  font-size: 2rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.5rem;
  color: #e94560;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose h4 {
  font-size: 1.2rem;
  color: #e94560;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.prose p {
  margin-bottom: 1.5rem;
  color: #b0b0b0;
}

.prose a {
  color: #e94560;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 69, 96, 0.3);
  transition: all 0.3s;
}

.prose a:hover {
  color: #ff6b9d;
  border-bottom-color: #ff6b9d;
}

.prose ul,
.prose ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: #b0b0b0;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose code {
  background: rgba(233, 69, 96, 0.1);
  color: #ff6b9d;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.prose pre {
  background: #1a1a2e;
  border: 1px solid #0f3460;
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.prose pre code {
  background: none;
  color: #e0e0e0;
  padding: 0;
  font-size: 0.95em;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose blockquote {
  border-left: 4px solid #e94560;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #b0b0b0;
}

.lead {
  font-size: 1.3rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Tags */
.tag {
  display: inline-block;
  background: rgba(233, 69, 96, 0.1);
  color: #e94560;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Blog List */
.blog-list-item {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(233, 69, 96, 0.1);
  padding-bottom: 2rem;
}

.blog-list-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #888;
}

.blog-list-item h2 {
  margin-bottom: 1rem;
}

.blog-list-item h2 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.blog-list-item h2 a:hover {
  color: #e94560;
}

.blog-excerpt {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-tags {
  margin-bottom: 1rem;
}

.read-more-link {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more-link:hover {
  color: #ff6b9d;
}

/* Post/Career/Skill Detail Headers */
.post-header,
.career-header,
.skill-header,
.device-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  border-bottom: 2px solid rgba(233, 69, 96, 0.2);
  margin-bottom: 2rem;
}

.post-meta,
.career-meta-header,
.skill-meta-header,
.device-meta-header {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #888;
}

.post-category,
.skill-difficulty-badge,
.skill-time-badge,
.device-season-badge,
.device-tier-badge {
  background: rgba(233, 69, 96, 0.2);
  color: #e94560;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.post-header h1,
.career-header h1,
.skill-header h1,
.device-header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.post-description,
.career-intro,
.skill-intro,
.device-intro {
  font-size: 1.2rem;
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.post-tags {
  margin-top: 1rem;
}

.post-byline {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(233, 69, 96, 0.3);
  border-radius: 12px;
  background: rgba(15, 52, 96, 0.08);
}

.byline-name {
  font-weight: 700;
  color: #fff;
}

.byline-meta {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin: 4px 0;
}

.byline-bio {
  margin: 0.25rem 0 0;
  color: #c8c8d5;
}

.ad-slot {
  margin: 1.5rem 0;
  border: 1px dashed rgba(233, 69, 96, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  min-height: 140px;
  display: grid;
  place-items: center;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.ad-slot-inner {
  opacity: 0.9;
}

/* Career Stats */
.career-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.career-stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.4) 0%, rgba(26, 26, 46, 0.4) 100%);
  border-radius: 8px;
  border: 1px solid rgba(233, 69, 96, 0.1);
}

.career-stat strong {
  display: block;
  color: #e94560;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.career-stat span {
  color: #fff;
  font-size: 1.1rem;
}

/* Related Content */
.related-posts,
.related-section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.related-posts h3,
.related-section h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(233, 69, 96, 0.2);
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: #e94560;
  box-shadow: 0 8px 20px rgba(233, 69, 96, 0.2);
}

.related-card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.related-card p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.skill-time,
.career-salary {
  display: block;
  color: #e94560;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* CTAs */
.post-cta,
.career-cta,
.skill-cta,
.device-cta {
  max-width: 800px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
  border-radius: 12px;
  text-align: center;
}

.post-cta h3,
.career-cta h3,
.skill-cta h3,
.device-cta h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.post-cta p,
.career-cta p,
.skill-cta p,
.device-cta p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

/* Careers/Skills/Devices Grid */
.careers-grid,
.skills-grid,
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.career-card,
.skill-card,
.device-card {
  background: linear-gradient(135deg, rgba(22, 33, 62, 0.6) 0%, rgba(26, 26, 46, 0.6) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(233, 69, 96, 0.2);
  transition: all 0.3s;
}

.career-card:hover,
.skill-card:hover,
.device-card:hover {
  transform: translateY(-5px);
  border-color: #e94560;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.career-card-header,
.skill-card-header,
.device-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.career-card h2,
.skill-card h2,
.device-card h2 {
  margin-bottom: 1rem;
}

.career-card h2 a,
.skill-card h2 a,
.device-card h2 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.career-card h2 a:hover,
.skill-card h2 a:hover,
.device-card h2 a:hover {
  color: #e94560;
}

.skill-difficulty,
.device-tier {
  background: rgba(233, 69, 96, 0.2);
  color: #e94560;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.career-description,
.skill-description,
.device-description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.career-details,
.skill-meta,
.device-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.career-detail,
.skill-time,
.skill-category {
  color: #888;
}

.career-detail strong {
  color: #e94560;
  margin-right: 0.5rem;
}

.career-link,
.skill-link,
.device-link {
  color: #e94560;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.career-link:hover,
.skill-link:hover,
.device-link:hover {
  color: #ff6b9d;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(233, 69, 96, 0.1);
}

.faq-question {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.faq-answer p {
  color: #b0b0b0;
  line-height: 1.6;
}

.faq-cta {
  max-width: 800px;
  margin: 3rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(15, 52, 96, 0.1) 100%);
  border-radius: 12px;
  text-align: center;
}

.faq-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.faq-cta p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 12px;
  margin: 1rem 0 2rem;
  max-width: 640px;
}

.contact-form .field {
  display: grid;
  gap: 6px;
  color: #d8d8e0;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(233, 69, 96, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.last-updated {
  color: #888;
  font-style: italic;
  margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .features-grid,
  .steps-grid,
  .blog-grid,
  .career-preview-grid,
  .careers-grid,
  .skills-grid,
  .devices-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .prose h1 {
    font-size: 1.8rem;
  }
  
  .prose h2 {
    font-size: 1.5rem;
  }
}

/* Show/hide elements */
.hidden {
  display: none !important;
}
