/* Cognito Works Mockup - Custom Styles */

/* Base */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400&display=swap');

body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: #0a0f1a;
  color: #e8e8e8;
}

/* Placeholder highlighting */
.placeholder {
  background-color: rgba(245, 158, 11, 0.2);
  border: 2px dashed #f59e0b;
  border-radius: 4px;
  padding: 2px 8px;
  color: #f59e0b;
  font-weight: 600;
  cursor: help;
  position: relative;
}

.placeholder:hover {
  background-color: rgba(245, 158, 11, 0.35);
}

/* Hero gradient */
.hero-gradient {
  background: radial-gradient(ellipse at 50% 0%, rgba(234, 179, 8, 0.15) 0%, transparent 60%),
              linear-gradient(180deg, #0d1321 0%, #0a0f1a 100%);
}

/* Section divider */
.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card hover */
.card-hover {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.card-hover:hover {
  border-color: rgba(234, 179, 8, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* CTA gradient */
.cta-gradient {
  background: linear-gradient(135deg, #1a1f2e 0%, #0d1321 100%);
}

/* Tech badge */
.tech-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #d1d5db;
  transition: all 0.2s ease;
}
.tech-badge:hover {
  border-color: rgba(234, 179, 8, 0.4);
  color: #eab308;
}

/* Technologies gradient (matches dev site) */
.bg-technologies-gradient {
  background-image: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(0, 35, 102, 0.6) 0, rgba(0, 35, 102, 0) 80%);
}

/* Number stat */
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #eab308;
  line-height: 1;
}

/* FAQ accordion */
.faq-item summary {
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  font-weight: 700;
  margin-right: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::before {
  content: '−';
}

/* Testimonial */
.testimonial-card {
  border-left: 3px solid #eab308;
  background: rgba(255, 255, 255, 0.03);
}

/* Thesis callout — positioning statement / manifest excerpt */
.thesis-callout {
  border-left: 3px solid #eab308;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 2rem 2.5rem;
  border-radius: 0 12px 12px 0;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e5e7eb;
  font-weight: 600;
  position: relative;
}
.thesis-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #eab308 0%, rgba(234, 179, 8, 0.3) 100%);
}
.thesis-callout .thesis-source {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #9ca3af;
}

/* Logo bar */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.logo-bar:hover {
  opacity: 0.75;
}
.logo-bar img {
  height: 28px;
  filter: grayscale(100%) brightness(2);
  transition: filter 0.3s ease;
}
.logo-bar img:hover {
  filter: grayscale(0%) brightness(1);
}

/* Logo grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}
.logo-grid-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.logo-grid-item:hover {
  border-color: rgba(234, 179, 8, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.logo-grid-item img {
  max-height: 36px;
  filter: grayscale(100%) brightness(1.8);
  transition: filter 0.3s ease;
}
.logo-grid-item:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Pricing table */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.pricing-card.featured {
  border-color: #eab308;
  box-shadow: 0 0 30px rgba(234, 179, 8, 0.1);
}
.pricing-card:hover {
  transform: translateY(-4px);
}

/* Nav */
.nav-link {
  color: #d1d5db;
  transition: color 0.2s ease;
  font-weight: 600;
}
.nav-link:hover {
  color: #eab308;
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}

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

/* SEO block */
.seo-block {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.7;
  border-left: 3px solid rgba(255, 255, 255, 0.08);
  padding-left: 1.5rem;
}

/* Process steps */
.process-step {
  position: relative;
  padding-left: 3.5rem;
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Reference logo grid placeholder */
.logo-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: #6b7280;
  font-size: 0.85rem;
}

.client-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* Button styles */
.btn-primary {
  background-color: #eab308;
  color: #0a0f1a;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #facc15;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e8e8e8;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: #eab308;
  color: #eab308;
}

/* Footer */
footer a {
  color: #9ca3af;
  transition: color 0.2s ease;
  text-decoration: none;
}
footer a:hover {
  color: #eab308;
}
