* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: #141217;
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon img{
  width: 260px;
  height: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #1e293b;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1e293b;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #bed62f;
  color: #1e293b;
}

.btn-primary:hover {
  background: #a8c228;
}

.btn-secondary {
  background: #1e293b;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #485d7e;
  color: white;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./assets/Desktop-01.png) top center / cover no-repeat;
  padding: 80px 20px 60px;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  height: 90vh;
}

.badge {
  display: inline-block;
  background: rgba(202, 230, 48, 0.1);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(190, 214, 47, 0.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: bold;
  color: #cbd0da;;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero .highlight {
  color: #d3f124;
}

.hero p {
  font-size: 20px;
  color: white;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  display: flex;
  color: #cbd0da;
  align-items: center;
  gap: 8px;
}

.checkmark svg{
  width: 35px;
  height: 35px;
  fill: #cbd0da; 
  /* display: inline-block; */
  vertical-align: middle;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

/* Services Section */
.services {
  background: white;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: bold;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 2px solid rgba(190, 214, 47, 0.2);
  border-radius: 12px;
  padding: 40px;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(190, 214, 47, 0.4);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(190, 214, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #bed62f;
}

.service-card h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.service-card p {
  color: #64748b;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #64748b;
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: #f8fafc;
}

.plans-table-container {
    max-width: 900px;
    margin: 0 auto 40px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.plans-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.plans-table th {
    background: #1e293b;
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.plans-table td {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
}

.plans-table tr:last-child td {
    border-bottom: none;
}

.plans-table .featured-row {
    background: rgba(190, 214, 47, 0.05);
}

.plans-table .addon-row {
    background: #f8fafc;
    border-top: 2px solid #bed62f;
}

.price-highlight {
    color: #bed62f;
    font-weight: bold;
    font-size: 18px;
}

.pricing-cta {
    text-align: center;
    margin-top: 40px;
}

.pricing-cta .btn {
    margin: 0 10px;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 80px 20px;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bed62f;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark-custom {
    background: #bed62f;
    border-color: #bed62f;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark-custom::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    margin-top: 15px;
    color: #64748b;
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.contact-icon {
    font-size: 24px;
    min-width: 40px;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: #1e293b;
}

.contact-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Why Choose Us */
.why-choose {
  background: #1e293b;
  color: white;
  padding: 80px 20px;
}

.why-choose h2 {
  color: white;
}

.why-choose p {
  color: #cbd5e1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  background: #bed62f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  color: #cbd5e1;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #ffffff 0%, #a8c228 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  color: #141217;
  margin-bottom: 20px;
}

.cta p {
  color: #141217;
  font-size: 18px;
  margin-bottom: 40px;
}

.btn-white {
  background: #141217;
  color: #bed62f;
}

.btn-white:hover {
  background: #f8fafc;
  color: #141217;
}

.btn-outline-white {
  background: transparent;
  color: #141217;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: #141217;
}

/* Footer */
.footer {
  background: #0f172a;
  color: white;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 30px;
  text-align: center;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .features-list {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .plans-table-container {
        margin: 0 -20px 40px;
        border-radius: 0;
    }

    .plans-table th,
    .plans-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .pricing-cta .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 300px;
    }

    
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url(./assets/Mobile-01.png) top center / cover no-repeat;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 16px;
    padding: 0 10px;
  }

  .btn-lg {
    font-size: 14px;
    padding: 12px 20px;
  }

  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 10px;
  }

  .logo-icon img {
    width: 180px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .form-group label,
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
  }
}
