* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --secondary: #111827;
  --text: #1f2937;
  --muted: #6b7280;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #16a34a;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--secondary);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.95rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--secondary);
  margin: 4px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--secondary);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* Hero */
.hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 25%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1e8;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--secondary);
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.main-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.card-top p {
  font-weight: 700;
  color: var(--secondary);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.mini-card h4 {
  color: var(--secondary);
  margin-bottom: 8px;
}

.mini-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.progress-box {
  margin-top: 22px;
  padding: 18px;
  background: #fff7ed;
  border-radius: 18px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--secondary);
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: #fed7aa;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 92%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
}

.floating-badge {
  position: absolute;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--secondary);
}

.badge-one {
  top: -10px;
  right: 0;
}

.badge-two {
  bottom: 20px;
  left: -20px;
}

/* Sections */
.section {
  padding: 90px 0;
}

.light-section {
  background: var(--light);
}

.dark-section {
  background: linear-gradient(135deg, #111827, #1f2937);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.white h2,
.section-head.white p {
  color: var(--white);
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.dark-tag {
  background: rgba(17, 24, 39, 0.08);
  color: var(--secondary);
}

/* Cards */
.problem-grid,
.solution-grid,
.benefits-grid,
.category-grid,
.steps-grid {
  display: grid;
  gap: 22px;
}

.problem-grid,
.solution-grid,
.benefits-grid {
  grid-template-columns: repeat(4, 1fr);
}

.problem-card,
.solution-card,
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid #f1f5f9;
}

.problem-card h3,
.solution-card h3,
.benefit-card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.problem-card p,
.solution-card p,
.benefit-card p {
  color: var(--muted);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff1e8;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: #fdba74;
  font-weight: 800;
}

.step-card h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  color: #d1d5db;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
}

/* CTA */
.cta-section {
  padding: 0 0 90px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.cta-box {
  background: linear-gradient(135deg, #111827, #1f2937);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 0.98rem;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.full-width {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--success);
}

/* Footer */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo .logo-text {
  color: var(--white);
}

.footer-text {
  margin-top: 16px;
  max-width: 420px;
  color: #94a3b8;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cbd5e1;
}

.footer ul li a:hover {
  color: #fdba74;
}

.footer-bottom {
  padding-top: 18px;
  text-align: center;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .contact-grid,
  .problem-grid,
  .solution-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4%;
    display: none;
  }

  .nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .trust-strip,
  .steps-grid,
  .category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .badge-two {
    left: 10px;
    bottom: -10px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 60px;
  }

  .section {
    padding: 70px 0;
  }

  .problem-grid,
  .solution-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .floating-badge {
    position: static;
    display: inline-block;
    margin-top: 14px;
  }
}