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

html { 
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

/* ---------- Promo Banner ---------- */
.promo-banner {
  background: linear-gradient(135deg, #00aaff, #0088cc);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.promo-banner strong {
  font-weight: 700;
}

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: #000;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #00aaff;
}

/* ---------- Burger ---------- */
.burger {
  display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-logo {
  max-width: 350px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: #0f1720;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 3rem;
}

.section-dark .section-subtitle {
  color: #aaa;
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000;
}

.feature-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- CTA Center ---------- */
.cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---------- Split Content ---------- */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-text {
  max-width: 550px;
}

.lead-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.check-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.check-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 1rem;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00aaff;
  font-weight: 700;
  font-size: 1.2rem;
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ---------- Pricing Grid ---------- */
.promo-box {
  background: linear-gradient(135deg, #00aaff, #0088cc);
  color: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 700px;
  box-shadow: 0 5px 20px rgba(0, 170, 255, 0.25);
}

.promo-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.promo-text {
  font-size: 1rem;
  line-height: 1.5;
}

.promo-text strong {
  font-weight: 700;
}

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

.price-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  border: 3px solid #00aaff;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #00aaff;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 1;
}

.price-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.price-body {
  padding: 1.5rem;
}

.price-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 0.75rem;
}

.premium-row {
  margin-top: 1.5rem;
}

.package-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.package-label {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
}

.package-label.premium {
  color: #b93c7a;
}

.package-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #00aaff;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.package-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: #555;
}

.package-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00aaff;
  font-weight: 700;
}

.price-note {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #00aaff;
  color: #fff;
}

.btn-primary:hover {
  background: #0088cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 170, 255, 0.3);
}

.btn-block {
  width: 100%;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid #333;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00aaff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 1rem;
}

.form-status {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

/* ---------- Contact Alternative ---------- */
.contact-alt {
  max-width: 700px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
}

.contact-alt-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #000;
  color: #fff;
  padding: 2rem 0;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .split-text {
    max-width: 100%;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .promo-banner {
    display: none;
  }

  .burger {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
  }

  .nav-inner {
    padding: 0.5rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .logo-img {
    height: 45px;
  }

  .brand {
    margin: 0 auto;
  }

  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.5rem 0;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    color: #fff;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
    border-right: 1px solid #333;
  }

  .main-nav a:last-child {
    border-right: none;
  }

  .hero {
    height: 50vh;
    min-height: 400px;
    margin-top: 110px;
  }

  .hero-logo {
    max-width: 250px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .promo-box {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
  }

  .promo-icon {
    font-size: 1.75rem;
  }

  .promo-text {
    font-size: 0.95rem;
  }

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

  .split-image img {
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}