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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  border-bottom: 1px solid #262626;
  padding: 1.5rem 0;
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

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

.nav-link {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

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

/* Hero Section */
.hero {
  padding: 5rem 0;
  text-align: center;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

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

.hero-description {
  font-size: 1.125rem;
  color: #a3a3a3;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

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

@media (min-width: 768px) {
  .hero {
    padding: 8rem 0;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background-color: #e5e5e5;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #404040;
}

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

.btn-full {
  width: 100%;
}

/* Product Section */
.product-section {
  padding: 5rem 0;
  background-color: #0a0a0a;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

.section-header {
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #a3a3a3;
  line-height: 1.6;
}

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

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

/* Cards */
.card {
  background-color: #000000;
  border: 1px solid #262626;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.card-content {
  display: flex;
  gap: 1rem;
}

.card-icon {
  background-color: #171717;
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

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

.card-text {
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
}

.benefits-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  background-color: #171717;
  border-radius: 9999px;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.check-icon svg {
  width: 1rem;
  height: 1rem;
  color: #ffffff;
}

.benefit-item p {
  color: #d4d4d4;
  line-height: 1.6;
}

/* Delivery Section */
.delivery-section {
  padding: 4rem 0;
  background-color: #0a0a0a;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}

.delivery-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-block;
  background-color: #000000;
  border: 1px solid #262626;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.delivery-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.delivery-text {
  color: #a3a3a3;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.pricing-card {
  background-color: #0a0a0a;
  border: 1px solid #262626;
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
}

.pricing-card-featured {
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ffffff;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.25rem;
  font-weight: 700;
}

.price-period {
  color: #a3a3a3;
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.feature-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item span {
  font-size: 0.875rem;
  color: #d4d4d4;
}

/* Footer */
.footer {
  border-top: 1px solid #262626;
  padding: 3rem 0;
}

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

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

.footer-brand {
  max-width: 24rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact li {
  font-size: 0.875rem;
  color: #a3a3a3;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #262626;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #737373;
}

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