/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0f172a;
  min-height: 100vh;
}

/* Utility classes */
.hidden {
  display: none !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 50;
  border-bottom: 1px solid #334155;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .header-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .header-container {
    padding: 0 2rem;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  height: 2rem;
  width: 2rem;
  color: #3b82f6;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-link:hover {
  color: #ffffff;
}

.menu-button {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-button {
    display: none;
  }
}

.menu-icon,
.close-icon {
  height: 1.5rem;
  width: 1.5rem;
}

.nav-mobile {
  border-top: 1px solid #334155;
  padding: 1rem 0;
}

.nav-mobile-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile-link {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.3s ease;
  text-align: left;
  font-size: 1rem;
}

.nav-mobile-link:hover {
  color: #ffffff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.hero-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-container {
    padding: 8rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    padding: 8rem 2rem;
  }
}

.hero-content {
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge-icon {
  height: 1rem;
  width: 1rem;
  color: #60a5fa;
}

.hero-badge-text {
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2563eb;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover .btn-icon {
  transform: translateX(0.25rem);
}

.btn-icon {
  height: 1.25rem;
  width: 1.25rem;
  transition: transform 0.2s ease;
}

.btn-secondary {
  border: 1px solid #64748b;
  color: #cbd5e1;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  background: none;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: #94a3b8;
  color: #ffffff;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-feature {
  text-align: center;
}

.hero-feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hero-feature-icon svg {
  height: 2rem;
  width: 2rem;
}

.hero-feature-icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.hero-feature-icon-purple {
  background-color: rgba(168, 85, 247, 0.1);
  color: #a78bfa;
}

.hero-feature-icon-green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.hero-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.hero-feature-description {
  color: #94a3b8;
}

/* Section styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: #0f172a;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.about-paragraph {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-card {
  background-color: rgba(30, 41, 59, 0.5);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #475569;
}

.about-card-icon {
  height: 2rem;
  width: 2rem;
  margin-bottom: 1rem;
}

.about-card-icon-blue {
  color: #60a5fa;
}

.about-card-icon-purple {
  color: #a78bfa;
}

.about-card-icon-green {
  color: #4ade80;
}

.about-card-icon-orange {
  color: #fb923c;
}

.about-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.about-card-description {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: rgba(15, 23, 42, 0.5);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #475569;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
}

.service-card:hover .service-title {
  color: #93c5fd;
}

.service-card:hover .service-icon {
  background-color: rgba(59, 130, 246, 0.2);
}

.service-icon {
  background-color: rgba(59, 130, 246, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.service-icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: #60a5fa;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-description {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background-color: #60a5fa;
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.services-cta {
  margin-top: 4rem;
  text-align: center;
}

.services-cta-content {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 2rem;
}

.services-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.services-cta-description {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Founders Section */
.founders {
  padding: 5rem 0;
  background-color: #0f172a;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.founder-card {
  background-color: rgba(30, 41, 59, 0.5);
  border-radius: 0.75rem;
  border: 1px solid #475569;
  overflow: hidden;
  transition: all 0.3s ease;
}

.founder-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
}

.founder-avatar {
  height: 4rem; /* Reduced from 16rem (aspect-[4/1]) by 75% */
  overflow: hidden;
}

.founder-avatar-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.founder-card:hover .founder-avatar-bg {
  transform: scale(1.05);
}

.founder-avatar-blue {
  background-color: #3b82f6;
}

.founder-avatar-purple {
  background-color: #8b5cf6;
}

.founder-avatar-green {
  background-color: #10b981;
}

.founder-initials {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: 700;
}

.founder-content {
  padding: 1.5rem;
}

.founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.founder-title {
  color: #60a5fa;
  font-weight: 500;
  margin-bottom: 1rem;
}

.founder-description {
  color: #cbd5e1;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.founder-expertise {
  margin-top: 0.5rem;
}

.founder-expertise-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.founder-tag {
  background-color: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.founders-cta {
  margin-top: 4rem;
  text-align: center;
}

.founders-cta-content {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(51, 65, 85, 0.5) 100%);
  border: 1px solid #64748b;
  border-radius: 0.75rem;
  padding: 2rem;
}

.founders-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.founders-cta-description {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.founders-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.founders-tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border-width: 1px;
}

.founders-tag-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.2);
}

.founders-tag-purple {
  background-color: rgba(168, 85, 247, 0.1);
  color: #a78bfa;
  border-color: rgba(168, 85, 247, 0.2);
}

.founders-tag-green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.2);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #1e293b;
}

.contact-content {
  display: flex;
  justify-content: center;
}

.contact-info-centered {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-intro-description {
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  height: 1.5rem;
  width: 1.5rem;
}

.contact-detail-icon-blue {
  background-color: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.contact-detail-icon-green {
  background-color: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.contact-detail-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.contact-detail-text {
  color: #cbd5e1;
}

.contact-detail-subtext {
  color: #94a3b8;
  font-size: 0.875rem;
}

.contact-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-stat {
  background-color: rgba(15, 23, 42, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #475569;
}

.contact-stat-icon {
  height: 1.5rem;
  width: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-stat-icon-blue {
  color: #60a5fa;
}

.contact-stat-icon-purple {
  color: #a78bfa;
}

.contact-stat-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.contact-stat-description {
  color: #94a3b8;
  font-size: 0.75rem;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: rgba(15, 23, 42, 0.5);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #475569;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #1e293b;
  border: 1px solid #64748b;
  border-radius: 0.5rem;
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94a3b8;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-textarea {
  resize: none;
  min-height: 6rem;
}

.form-submit {
  width: 100%;
  background-color: #2563eb;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background-color: #1d4ed8;
}

.form-submit-icon {
  height: 1.25rem;
  width: 1.25rem;
}

/* Footer */
.footer {
  background-color: #0f172a;
  border-top: 1px solid #334155;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 2fr;
  }
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  height: 2rem;
  width: 2rem;
  color: #3b82f6;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-description {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  max-width: 24rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-social-link:hover {
  color: #60a5fa;
}

.footer-social-link svg {
  height: 1.25rem;
  width: 1.25rem;
}

.footer-column-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 3rem;
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    gap: 0;
  }
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #ffffff;
}
