/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

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

/* Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.logo {
  height: 32px;
  width: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #3b82f6;
}

.btn-audit {
  background-color: #3b82f6;
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-audit:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Hero Section */
.hero {
  background-color: #ffffff;
  padding: 100px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 60px;
  align-items: center;
}

.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #1a202c;
}

.hero-emotional-hook {
  font-size: 1.125rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 28px;
  font-style: italic;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 36px;
  color: #4a5568;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-primary {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-description {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* Hero Animation */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.workflow-diagram {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-icon {
  font-size: 2rem;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
}

.workflow-arrow {
  font-size: 1.5rem;
  color: #3b82f6;
  font-weight: bold;
}

/* Persona Clarification */
.persona-clarification {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
}

.persona-clarification p {
  font-size: 1.125rem;
  color: #3b82f6;
  font-weight: 500;
  margin: 0;
}

/* Tools Section */
.tools-section {
  padding: 40px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tools-section h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 24px;
}

.tools-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.tool-logo {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  transition: all 0.2s ease;
}

.tool-logo:hover {
  color: #6b7280;
  border-color: #9ca3af;
}

/* Solutions Section */
.solutions {
  padding: 70px 0;
  background-color: #f8fafc;
}

.solutions h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a202c;
}

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

.solution-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: #3b82f6;
}

.solution-icon svg {
  width: 100%;
  height: 100%;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a202c;
}

.solution-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.solution-link:hover {
  color: #2563eb;
}

/* Pricing Section */
.pricing {
  padding: 70px 0;
  background-color: #ffffff;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a202c;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.pricing-compare {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 60px;
  font-style: italic;
}

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

.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-sprint {
  background-color: #f8fafc;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-featured {
  border-color: #3b82f6;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.pricing-badge {
  background-color: #f59e0b;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.pricing-description {
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  color: #4a5568;
  position: relative;
  padding-left: 24px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.pricing-note {
  font-size: 0.8rem;
  color: #6b7280;
  font-style: italic;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Case Studies Section */
.case-studies {
  padding: 70px 0;
  background-color: #f8fafc;
}

.case-studies h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a202c;
}

.case-study {
  margin-bottom: 40px;
  padding: 35px;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.case-study-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}

.case-study-reverse .case-study-content {
  grid-template-columns: auto 1fr;
}

.case-study-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-problem h4,
.case-solution h4,
.case-result h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-problem p,
.case-solution p,
.case-result p {
  color: #4a5568;
  line-height: 1.6;
}

.case-study-visual {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-metric-chart {
  margin-bottom: 20px;
}

.metric-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.metric-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a202c;
}

.tools-used {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tool-badge {
  font-size: 0.75rem;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.case-testimonial {
  margin: 20px 0;
  padding: 20px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.case-testimonial p {
  color: #4a5568;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.case-testimonial cite {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
}

.case-study-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
}

.case-study-link:hover {
  color: #2563eb;
}

/* How It Works Section */
.how-it-works {
  padding: 70px 0;
  background-color: #ffffff;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #1a202c;
}

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

.process-step {
  text-align: center;
  padding: 40px 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #3b82f6;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a202c;
}

.process-step p {
  color: #4a5568;
  line-height: 1.6;
}

/* Why Opsilot Section */
.why-opsilot {
  padding: 70px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.why-opsilot h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 70px 0;
  background-color: #1a202c;
  color: white;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.2;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.btn-primary-large {
  background-color: #3b82f6;
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.btn-primary-large:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.final-cta .cta-description {
  font-size: 1.125rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Trust Line */
.trust-line {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-line p {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin: 0;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.3s ease;
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-floating {
  background-color: #3b82f6;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-floating:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Footer */
.footer {
  background-color: #374151;
  color: white;
  padding: 32px 0 16px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: #4b5563;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #4b5563;
  color: #9ca3af;
  font-size: 0.875rem;
}

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

.solution-card,
.pricing-card,
.benefit-card,
.process-step {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .solutions-grid,
  .pricing-grid,
  .benefits-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .tools-logos {
    gap: 15px;
  }

  .case-study-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .case-study-text {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-study-reverse .case-study-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-menu {
    display: none;
  }

  .workflow-diagram {
    flex-direction: column;
    gap: 10px;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .floating-cta {
    bottom: 15px;
    right: 15px;
  }

  .btn-floating {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .solutions h2,
  .pricing h2,
  .case-studies h2,
  .how-it-works h2,
  .why-opsilot h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .solution-card,
  .pricing-card {
    padding: 30px 20px;
  }

  .case-study {
    padding: 30px 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn-primary:focus,
.btn-primary-large:focus,
.btn-audit:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Thank You Page */
.thank-you-section {
  padding: 120px 0 80px;
  background-color: #ffffff;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.2;
}

.thank-you-message {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.6;
}

.thank-you-instructions {
  background: rgba(59, 130, 246, 0.05);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  border-left: 4px solid #3b82f6;
}

.thank-you-instructions p {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 16px;
}

.thank-you-instructions p:last-child {
  margin-bottom: 0;
}

.thank-you-signature {
  font-size: 1.125rem;
  color: #6b7280;
  font-style: italic;
  margin: 40px 0 30px;
}

.thank-you-actions {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .thank-you-content {
    padding: 40px 30px;
  }

  .thank-you-content h1 {
    font-size: 2rem;
  }

  .thank-you-message {
    font-size: 1.125rem;
  }

  .thank-you-instructions {
    padding: 24px 20px;
  }

  .thank-you-instructions p {
    font-size: 1rem;
  }
}
