/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #101828;
  background: #0f172a;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

section {
  scroll-margin-top: 80px;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fb923c;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #fb923c, #0f172a 45%);
  color: #f9fafb;
  padding: 7rem 0 4.5rem;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.hero-text {
  flex: 1.5;
  min-width: 260px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 32rem;
  margin-bottom: 1.25rem;
  color: #e5e7eb;
}

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

.hero-list li {
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.95rem;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fed7aa;
}

.hero-card {
  flex: 1;
  min-width: 250px;
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.hero-card p {
  color: #e5e7eb;
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease,
    color 0.1s ease, border-color 0.1s ease;
}

.btn-primary {
  background: #fb923c;
  border-color: #fed7aa;
  color: #111827;
  box-shadow: 0 10px 25px rgba(248, 180, 96, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(248, 180, 96, 0.55);
}

.btn-outline {
  background: transparent;
  color: #f9fafb;
  border-color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
}

/* Sections */
.section {
  padding: 4rem 0;
  background: #020617;
  color: #e5e7eb;
}

.section-alt {
  background: #020617;
  background: radial-gradient(circle at top right, #1e293b, #020617 55%);
}

.section-highlight {
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #111827;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
}

.section-subtitle {
  margin-top: 0;
  margin-bottom: 2rem;
  color: #9ca3af;
  max-width: 36rem;
}

/* Layout helpers */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: flex-start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Cards */
.card,
.feature-card,
.pricing-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.feature-card h3,
.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: #cbd5f5;
}

/* Bullet lists */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.bullet-list li {
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.95rem;
}

.bullet-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #fb923c;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.timeline-step {
  position: relative;
  padding-top: 1.5rem;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #fb923c;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.timeline-step h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  padding-left: 2.6rem;
  font-size: 1rem;
}

.timeline-step p {
  margin: 0;
  padding-left: 2.6rem;
  font-size: 0.95rem;
  color: #9ca3af;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  position: relative;
}

.pricing-card-featured {
  background: linear-gradient(145deg, #fb923c, #0f172a);
  border-color: #fed7aa;
  color: #0b1220;
}

.pricing-card-featured .price-tagline,
.pricing-card-featured li {
  color: #111827;
}

.badge {
  position: absolute;
  top: -0.9rem;
  right: 1.4rem;
  background: #0b1220;
  color: #f97316;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #f97316;
}

.price {
  font-size: 1.8rem;
  margin: 0.2rem 0;
  font-weight: 700;
}

.price-tagline {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #9ca3af;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
}

.pricing-list li {
  margin-bottom: 0.4rem;
}

.team-callout {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
}

/* Chips */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* Before/After */
.example-box {
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.example-before {
  background: rgba(127, 29, 29, 0.4);
  border: 1px solid rgba(248, 113, 113, 0.6);
}

.example-after {
  background: rgba(22, 163, 74, 0.35);
  border: 1px solid rgba(52, 211, 153, 0.7);
}

.before-label,
.after-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin: 0.4rem 0 0.2rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Contact */
.section-highlight h2,
.section-highlight .section-subtitle {
  color: #111827;
}

.contact-form {
  margin-top: 2rem;
  background: rgba(15, 23, 42, 0.12);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
}

input,
select,
textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  margin-top: 0.75rem;
  color: #4b5563;
}

/* Footer */
.footer {
  background: #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  padding: 1.25rem 0;
  color: #6b7280;
  font-size: 0.85rem;
}

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

.back-to-top {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a:not(.btn) {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .logo-img {
    height: 32px;
  }
}

html {
  scroll-behavior: smooth;
}
