/* ==========================================================================
   CPE Daddies — Corporate Parody SaaS Landing Page
   Pure CSS, dark theme, polished & professional
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a1628;
  color: #e2e8f0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --------------------------------------------------------------------------
   2. Utility Classes
   -------------------------------------------------------------------------- */

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

.section {
  padding: 96px 0;
}

.section-title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #8892a4;
  font-weight: 400;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #f0b429;
  color: #0a1628;
  padding: 16px 32px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background-color: #f7c948;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(240, 180, 41, 0.3);
}

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: #f0b429;
}

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

.nav-links a {
  color: #8892a4;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */

.hero {
  padding: 168px 0 96px;
  text-align: center;
  background: linear-gradient(180deg, #0a1628 0%, #0f1d32 100%);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #8892a4;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero .btn-primary {
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   6. Trusted By Bar
   -------------------------------------------------------------------------- */

.trusted-by {
  background: #0f1d32;
  padding: 48px 0;
  text-align: center;
}

.trusted-by .section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8892a4;
  margin-bottom: 24px;
}

.trusted-by-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.badge {
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.875rem;
  color: #f0b429;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(240, 180, 41, 0.15);
  border-color: rgba(240, 180, 41, 0.35);
}

/* --------------------------------------------------------------------------
   7. Companies Section
   -------------------------------------------------------------------------- */

.companies {
  padding: 96px 0;
  background: #0f1d32;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.company-card {
  background: #152238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(240, 180, 41, 0.3);
}

.company-logo {
  font-size: 3rem;
  margin-bottom: 16px;
}

.company-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.company-industry {
  color: #f0b429;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 16px;
}

.company-quote {
  color: #8892a4;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Services Grid
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: #152238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(240, 180, 41, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.service-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-description {
  color: #8892a4;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. Team Section
   -------------------------------------------------------------------------- */

.team-section {
  padding: 96px 0;
}

.team-group {
  margin-bottom: 64px;
}

.team-group:last-child {
  margin-bottom: 0;
}

.team-group-label {
  display: inline-block;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: 24px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f0b429;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  text-align: center;
}

.team-group-header {
  text-align: center;
  margin-bottom: 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: #152238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(240, 180, 41, 0.3);
}

.team-avatar {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.team-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.1rem;
}

.team-nickname {
  color: #8892a4;
  font-size: 0.8rem;
  font-style: italic;
  margin: 4px 0;
}

.team-title {
  color: #f0b429;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 8px 0;
  font-weight: 600;
}

.team-bio {
  color: #8892a4;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. Testimonials
   -------------------------------------------------------------------------- */

.testimonials {
  padding: 96px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #152238;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid #f0b429;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  font-size: 4rem;
  color: #f0b429;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -12px;
  font-family: Georgia, 'Times New Roman', serif;
  user-select: none;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.7;
}

.testimonial-author {
  color: #8892a4;
  margin-top: 16px;
  font-size: 0.9rem;
}

.testimonial-author::before {
  content: "\2014\00a0";
}

/* --------------------------------------------------------------------------
   10. D.A.D. Framework
   -------------------------------------------------------------------------- */

.dad-framework {
  padding: 96px 0;
}

.dad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.dad-column {
  text-align: center;
  padding: 32px;
}

.dad-letter {
  font-size: 4rem;
  font-weight: 900;
  color: #f0b429;
  line-height: 1;
}

.dad-title {
  font-weight: 700;
  color: #ffffff;
  font-size: 1.25rem;
  margin: 12px 0;
}

.dad-description {
  color: #8892a4;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Contact Section
   -------------------------------------------------------------------------- */

.contact {
  padding: 96px 0;
  text-align: center;
  background: linear-gradient(180deg, #0a1628 0%, #0f1d32 100%);
}

.contact .section-title {
  margin-bottom: 16px;
}

.contact .section-subtitle {
  margin-bottom: 40px;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: #060e1a;
  padding: 48px 0;
  text-align: center;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-badges .badge {
  font-size: 0.8rem;
  padding: 6px 16px;
}

.footer-copyright {
  color: #8892a4;
  font-size: 0.9rem;
  margin-top: 24px;
}

.footer-tagline {
  color: #8892a4;
  font-size: 0.85rem;
  margin-top: 8px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.2);
  color: #f0b429;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(240, 180, 41, 0.2);
  border-color: rgba(240, 180, 41, 0.4);
  transform: scale(1.1);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #8892a4;
  opacity: 0.6;
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. Responsive — Tablet (max-width: 768px)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 132px 0 64px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 4vw, 2rem);
  }

  .companies-grid,
  .services-grid,
  .testimonials-grid,
  .dad-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .trusted-by {
    padding: 36px 0;
  }

  .companies {
    padding: 64px 0;
  }

  .dad-framework {
    padding: 64px 0;
  }

  .contact {
    padding: 64px 0;
  }
}

/* --------------------------------------------------------------------------
   14. Responsive — Mobile (max-width: 480px)
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 112px 0 48px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .companies-grid,
  .services-grid,
  .testimonials-grid,
  .dad-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .company-card {
    padding: 24px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .service-card,
  .team-card,
  .testimonial-card {
    padding: 24px;
  }

  .dad-column {
    padding: 16px;
  }

  .dad-letter {
    font-size: 3rem;
  }

  .trusted-by {
    padding: 32px 0;
  }

  .trusted-by-badges {
    gap: 10px;
  }

  .badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .contact {
    padding: 48px 0;
  }

  .footer {
    padding: 32px 0;
  }
}
