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

body {
  background-color: black;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-black {
  background-color: #000000;
}

.text-white {
  color: #ffffff;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.gradient-blob-1 {
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: linear-gradient(135deg, #FF5A5F, #D82020);
  opacity: 0.2;
}

.gradient-blob-2 {
  bottom: 80px;
  left: 80px;
  width: 320px;
  height: 320px;
  background: linear-gradient(45deg, #F1322B, #FF483F);
  opacity: 0.15;
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid #1f2937;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(to right, #FF5A5F, #D82020);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-badge span {
  font-size: 14px;
  color: #9ca3af;
}

.hero-title {
  font-size: 96px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 64px;
  }
}

.gradient-text {
  background: linear-gradient(to right, #FF5A5F, #FF483F, #D82020);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 24px;
  color: #9ca3af;
  margin-bottom: 16px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

.hero-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 48px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(to right, #FF5A5F, #FF483F, #D82020);
  border-radius: 8px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 90, 95, 0.5);
}

.btn-primary .arrow-icon {
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid #374151;
  border-radius: 8px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #111827;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid #374151;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding: 8px;
}

.scroll-dot {
  width: 6px;
  height: 12px;
  background: linear-gradient(to bottom, #FF5A5F, transparent);
  border-radius: 9999px;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Philosophy Section */
.philosophy-section {
  position: relative;
  padding: 128px 24px;
  border-top: 1px solid #111827;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
}

.container-small {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.grid-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  align-items: center;
}

@media (max-width: 768px) {
  .grid-two-col {
    grid-template-columns: 1fr;
  }
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

.section-title-gray {
  font-size: 40px;
  font-weight: 700;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .section-title-gray {
    font-size: 32px;
  }
}

.section-text {
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.6;
}

.section-text.centered {
  max-width: 672px;
  margin: 0 auto;
}

.quote-card-wrapper {
  position: relative;
}

.quote-card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF5A5F, #D82020);
  border-radius: 16px;
  filter: blur(32px);
  opacity: 0.2;
}

.quote-card {
  position: relative;
  background-color: #111827;
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 32px;
}

.quote-text {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
}

/* Services Section */
.services-section {
  position: relative;
  padding: 128px 24px;
  border-top: 1px solid #111827;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header-small {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #374151;
  transform: scale(1.05);
}

.card-top-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #FF5A5F, #D82020);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-top-border,
.logo-card:hover .card-top-border {
  opacity: 1;
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.2), rgba(216, 32, 32, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.icon {
  color: #FF5A5F;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card-text {
  color: #9ca3af;
  line-height: 1.6;
}

/* Trusted By Section */
.trusted-section {
  position: relative;
  padding: 80px 24px;
  border-top: 1px solid #111827;
}

.trusted-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo-card {
  position: relative;
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.logo-card:hover {
  border-color: #374151;
  transform: scale(1.05);
}

.logo-image {
  height: 56px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

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

.logo-caption {
  color: #6b7280;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 128px 24px;
  border-top: 1px solid #111827;
}

.mail-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FF5A5F, #D82020);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.mail-icon {
  color: white;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(to right, #FF5A5F, #FF483F, #D82020);
  border-radius: 8px;
  font-weight: 600;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.btn-large:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 90, 95, 0.5);
}

/* Footer */
.footer {
  position: relative;
  padding: 48px 24px;
  border-top: 1px solid #111827;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
}

.footer-text {
  color: #6b7280;
  font-size: 14px;
}
