/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* BRAND COLORS */
:root {
  --primary: #0B1F3A;   /* navy */
  --accent: #FF6A00;    /* orange */
  --dark: #05070d;
  --light: #f9f9f9;
  --text-main: #333;
  --text-muted: #666;
  --text-light: #aaa;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-main);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar img {
  height: 45px;
}

.navbar nav {
  display: flex;
  align-items: center;
}

.navbar a {
  margin-left: 25px;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.3s;
}

.navbar a:hover {
  color: white;
}

.cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
}

.cta:hover {
  background: #e65f00 !important;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0B1F3A 100%);
  color: white;
  text-align: center;
  padding: 140px 20px;
}

.badge {
  display: inline-block;
  background: rgba(255, 106, 0, 0.15);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  margin: 0 auto 35px;
  max-width: 650px;
  color: #ccc;
  font-size: 1.2rem;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 15px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #e65f00;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 15px 32px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* GENERIC SECTION STYLES */
.section {
  padding: 100px 10%;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* Decorative underline for headings */
.section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.subtitle {
  display: block;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ALTERNATING BACKGROUNDS */
.problem, .how-it-works, .about, .pricing, .faq {
  background-color: var(--light);
}

.services, .benefits, .features, .testimonials, .contact {
  background-color: var(--white);
}

/* PROBLEM SECTION */
.problem-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 40px auto;
}

.problem-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  font-size: 1rem;
  border-left: 5px solid #ddd;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: 0.3s;
}

.problem-item:hover {
  border-left-color: var(--accent);
  transform: translateX(5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.problem-closing {
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

/* SERVICES CARDS */
.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
  border: 1px solid #eee;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.card p {
  color: var(--text-muted);
}

/* HOW IT WORKS STEPS */
.steps {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.step {
  max-width: 300px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: var(--white);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 106, 0, 0.2);
  border: 2px solid var(--accent);
}

.step h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.step p {
  color: var(--text-muted);
}

/* BENEFITS GRID */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit {
  background: var(--light);
  padding: 35px;
  border-radius: 15px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid transparent;
}

.benefit:hover {
  background: white;
  border-color: #eee;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.benefit h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* ABOUT SECTION */
.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about-text {
  max-width: 550px;
  text-align: left;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 450px;
}

.highlight-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid #eee;
  transition: 0.3s;
}

.highlight-card:hover {
  transform: scale(1.05);
  border-color: var(--accent);
}

.highlight-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-item {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid #eee;
}

.feature-item:hover {
  background: white;
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* PRICING */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.price-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  width: 320px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  transition: 0.3s;
}

.price-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price-card h4 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.price-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.price-card li {
  margin: 12px 0;
  color: var(--text-muted);
}

.featured {
  border: 3px solid var(--accent);
  transform: scale(1.08);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.15);
}

.featured:hover {
  transform: scale(1.1);
}

/* TESTIMONIALS */
.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  width: 350px;
  text-align: left;
  position: relative;
  transition: 0.3s;
}

.testimonial:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 25px;
}

/* FAQ */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid #eee;
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* CONTACT */
.contact-container {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.contact-info {
  max-width: 350px;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #222;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .benefit-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 5%; }
  .hero h1 { font-size: 2.5rem; }
  .navbar { padding: 15px 5%; }
  .navbar nav { display: none; } /* Could add a hamburger menu here */
  
  .benefit-grid, .features-grid, .problem-points {
    grid-template-columns: 1fr;
  }
  
  .featured {
    transform: scale(1);
    margin: 20px 0;
  }
  
  .featured:hover { transform: scale(1.02); }
}
