/* CTA Buttons - Conversion Focused */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  background: #2563eb;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  margin: 10px 10px 10px 0;
  transition: background 0.2s ease;
  text-align: center;
}

.cta-button:hover {
  background: #1d4ed8;
  text-decoration: none;
}

.cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: #f3f4f6;
  color: #1f2937 !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  margin: 10px 10px 10px 0;
  transition: background 0.2s ease;
  text-align: center;
}

.cta-secondary:hover {
  background: #e5e7eb;
  text-decoration: none;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .cta-button,
  .cta-secondary {
    display: block;
    width: 100%;
    margin: 10px 0;
    font-size: 16px;
    padding: 14px 24px;
  }
}

/* Make hero stand out */
h1 {
  font-size: 2.5em;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

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

/* Pricing callout */
strong {
  color: #2563eb;
}

/* FAQ section readability */
h2 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}

/* Lists */
ul, ol {
  margin-left: 1.5em;
  line-height: 1.8;
}

/* Horizontal rules */
hr {
  margin: 3em 0;
  border: none;
  border-top: 2px solid #e5e7eb;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Companies Section */
.companies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 2em 0;
}

.company-logo {
  flex: 0 0 auto;
  display: inline-block;
}

.company-logo a {
  display: inline-block;
  line-height: 0;
}

.company-logo img {
  height: auto;
  max-height: 50px;
  width: 100px;
  object-fit: contain;
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.company-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .companies {
    gap: 20px;
  }

  .company-logo img {
    height: 35px;
    max-width: 100px;
  }
}

/* Testimonial Section */
.testimonial-highlight {
  max-width: 800px;
  margin: 2em auto;
  padding: 2em;
  background: #f8f9fa;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}

.testimonial-content {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-highlight blockquote {
  margin: 0;
  padding: 0;
  flex: 1;
}

.testimonial-highlight p {
  font-size: 1.2em;
  line-height: 1.6;
  font-style: italic;
  color: #1f2937;
  margin: 0 0 1em 0;
}

.testimonial-highlight footer {
  font-style: normal;
  color: #6b7280;
  font-size: 0.95em;
}

.testimonial-highlight footer strong {
  color: #1f2937;
  font-size: 1.05em;
}

.testimonial-highlight footer a {
  color: #2563eb;
  text-decoration: none;
}

.testimonial-highlight footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .testimonial-highlight {
    padding: 1.5em;
    margin: 1.5em 1em;
  }

  .testimonial-highlight p {
    font-size: 1.1em;
  }

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

  .testimonial-photo {
    width: 70px;
    height: 70px;
  }
}

/* Dropdown Menu */
.nav-item {
  position: relative;
  display: inline-block;
}

.nav-item > a {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5em 0;
  z-index: 1000;
  margin-top: 0;
  padding-top: 0.5em;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.75em 1.5em;
  color: #1f2937;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
}

@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9fafb;
    margin-top: 0;
  }

  .nav-item:hover .dropdown-menu {
    display: none;
  }

  .nav-item.active .dropdown-menu {
    display: block;
  }
}

/* Hero Social Links */
.hero-social {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  justify-content: center;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  color: #2563eb;
  transition: all 0.2s ease;
}

.hero-social a:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .hero-social {
    gap: 12px;
    margin: 20px 0;
  }

  .hero-social a {
    width: 40px;
    height: 40px;
  }

  .hero-social svg {
    width: 18px;
    height: 18px;
  }
}

/* Project Images in Content */
.content img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin: 0 0 1em 2em;
  float: right;
}

@media (max-width: 768px) {
  .content img {
    max-width: 100%;
    float: none;
    margin: 1em 0;
  }
}
