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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(215, 25%, 27%);
  background-color: hsl(0, 0%, 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

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

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

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(210, 100%, 50%, 0.95), hsl(195, 100%, 45%, 0.9));
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.floating-1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: hsl(210, 100%, 50%, 0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  top: 10rem;
  right: 4rem;
  width: 8rem;
  height: 8rem;
  background-color: hsl(180, 100%, 35%, 0.2);
  animation: float 6s ease-in-out 2s infinite;
}

.floating-3 {
  bottom: 8rem;
  left: 5rem;
  width: 4rem;
  height: 4rem;
  background-color: hsl(210, 100%, 50%, 0.3);
  animation: pulse-slow 4s ease-in-out infinite;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 20px 40px -10px hsl(210, 100%, 50%, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.company-header {
  margin-bottom: 2rem;
}

.company-name {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.company-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.company-underline {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(135deg, hsl(210, 100%, 50%), hsl(195, 100%, 45%));
  margin: 0 auto;
  border-radius: 9999px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-gradient-text {
  background: linear-gradient(to right, white, hsl(210, 100%, 80%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: white;
  color: hsl(210, 100%, 50%);
  box-shadow: 0 10px 30px -10px hsl(210, 100%, 50%, 0.2);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: hsl(210, 100%, 50%);
}

.btn-gradient {
  background: linear-gradient(135deg, hsl(210, 100%, 50%), hsl(195, 100%, 45%));
  color: white;
  box-shadow: 0 10px 30px -10px hsl(210, 100%, 50%, 0.2);
}

.btn-gradient:hover {
  opacity: 0.9;
}

.btn-contact {
  background-color: white;
  color: hsl(210, 100%, 50%);
  border: 1px solid white;
  width: 100%;
}

.btn-contact:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-consultation {
  background-color: white;
  color: hsl(210, 100%, 50%);
  box-shadow: 0 10px 30px -10px hsl(210, 100%, 50%, 0.2);
}

.btn-consultation:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(210, 17%, 95%), hsl(220, 20%, 98%));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(215, 25%, 27%);
  margin-bottom: 1.5rem;
}

.text-primary {
  color: hsl(210, 100%, 50%);
}

.section-subtitle {
  font-size: 1.25rem;
  color: hsl(215, 10%, 50%);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px -3px hsl(210, 20%, 85%, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.feature-card:hover {
  box-shadow: 0 10px 30px -10px hsl(210, 100%, 50%, 0.2);
}

.feature-header {
  text-align: center;
  padding-bottom: 1rem;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: hsl(215, 25%, 27%);
  margin-bottom: 1rem;
}

.feature-description {
  color: hsl(215, 10%, 50%);
  text-align: center;
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: hsl(0, 0%, 100%);
}

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

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(215, 25%, 27%);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.125rem;
  color: hsl(215, 10%, 50%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-features {
  margin-bottom: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.about-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: hsl(210, 100%, 50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
}

.checkmark {
  width: 0.75rem;
  height: 0.75rem;
  color: white;
}

.about-feature p {
  color: hsl(215, 10%, 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, hsl(210, 17%, 95%), hsl(220, 20%, 98%));
  border-radius: 1rem;
  box-shadow: 0 4px 15px -3px hsl(210, 20%, 85%, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(210, 100%, 50%);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: hsl(215, 10%, 50%);
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(210, 100%, 50%), hsl(195, 100%, 45%));
  color: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  box-shadow: 0 20px 40px -10px hsl(210, 100%, 50%, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-content {
  padding: 2rem;
  text-align: center;
}

.contact-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  color: white;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-card-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

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

.consultation-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 32rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.consultation-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.consultation-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: hsl(215, 25%, 27%);
  color: white;
  padding: 3rem 0;
}

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

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: white;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .company-name {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .company-name {
    font-size: 3.75rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .contact-title {
    font-size: 3rem;
  }
}

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

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}