/* CSS/style.css - Production ready, minified style structure, modern design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header & Sticky */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.2s;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #0f172a;
}
.logo span {
  color: #2563eb;
  font-weight: 600;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-list a {
  text-decoration: none;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s;
}
.nav-list a:hover {
  color: #2563eb;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: #0f172a;
  transition: 0.2s;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
  z-index: 1001;
  transition: transform 0.2s, background 0.2s;
}
.sticky-cta:hover {
  transform: scale(1.03);
  background: #1d4ed8;
}

/* Hero */
.hero {
  padding: 70px 0 80px;
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  background: #e0e7ff;
  color: #1e3a8a;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.2rem;
}
h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: #0f172a;
}
.hero-text {
  font-size: 1.2rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn {
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary {
  background: #2563eb;
  color: white;
  box-shadow: 0 2px 8px rgba(37,99,235,0.2);
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
}
.btn-outline:hover {
  border-color: #2563eb;
  background: #f1f5f9;
}
.trust-signals {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: #334155;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}
/* Section common */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2563eb;
  font-weight: 600;
}
h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}
.services {
  padding: 80px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 28px;
  transition: all 0.25s;
  border: 1px solid #eef2ff;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
}
.service-icon {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.why-us {
  background: #f1f5f9;
  padding: 80px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2rem;
}
.feature {
  background: white;
  padding: 1.8rem;
  border-radius: 24px;
}
.case-studies {
  padding: 80px 0;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}
.case-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  border: 1px solid #e9eef3;
}
.case-img img {
  width: 100%;
  height: auto;
  display: block;
}
.case-card h3 {
  padding: 1rem 1rem 0 1rem;
}
.case-card p {
  padding: 0 1rem 1.5rem 1rem;
  color: #475569;
}
.testimonials {
  background: #0f172a;
  color: white;
  padding: 80px 0;
}
.testimonial-slider {
  overflow-x: auto;
  scrollbar-width: thin;
}
.testimonial-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0.5rem;
}
.testimonial-card {
  background: #1e293b;
  border-radius: 28px;
  padding: 2rem;
  min-width: 300px;
  font-size: 1.1rem;
}
.faq {
  padding: 80px 0;
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
}
.faq-item {
  background: #f8fafc;
  padding: 1.8rem;
  border-radius: 24px;
}
.lead-form-section {
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  padding: 80px 0;
}
.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.urgency-badge {
  background: #fee2e2;
  color: #b91c1c;
  padding: 8px 18px;
  border-radius: 60px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}
.lead-form {
  background: white;
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.btn-block {
  width: 100%;
  text-align: center;
}
.whatsapp-link {
  display: inline-block;
  margin-top: 12px;
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}
.final-cta {
  background: #2563eb;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.final-cta .btn-secondary {
  background: white;
  color: #2563eb;
  margin-top: 1rem;
}
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links a {
  color: #94a3b8;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
}
@media (max-width: 800px) {
  .hero-grid, .form-container {
    grid-template-columns: 1fr;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 75px;
    left: -100%;
    background: white;
    width: 80%;
    height: 100vh;
    transition: 0.3s;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
  }
  .main-nav.active {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  .container {
    padding: 0 20px;
  }
}