:root {
  --primary: #ff7a00;
  --primary-dark: #e56200;
  --secondary: #101828;
  --text: #1d2939;
  --muted: #667085;
  --white: #ffffff;
  --light: #f8fafc;
  --border: rgba(16, 24, 40, 0.08);
  --shadow: 0 10px 35px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(16, 24, 40, 0.14);
  --container: 1200px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-light {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-head h2,
.cta-wrap h2,
.contact-content h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p,
.cta-wrap p,
.contact-content p,
.hero-content p {
  color: var(--muted);
  font-size: 16px;
}

.topbar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 10px 0;
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-right a {
  color: #fff;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #ff9d3f, #ff7a00);
  box-shadow: var(--shadow);
}

.logo-text {
  font-size: 20px;
  color: var(--secondary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ff982f, #ff7a00);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.24);
}

.btn-secondary {
  background: #fff4eb;
  color: var(--primary-dark);
  border-color: rgba(255, 122, 0, 0.14);
}

.btn-outline {
  border-color: rgba(16, 24, 40, 0.12);
  background: var(--white);
  color: var(--secondary);
}

.btn-white {
  background: var(--white);
  color: var(--secondary);
}

.btn-dark {
  background: rgba(16, 24, 40, 0.92);
  color: var(--white);
}

.full-width {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  margin: 5px 0;
  border-radius: 6px;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-btn {
  margin-top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 60px;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 160, 82, 0.16), transparent 32%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.1);
  color: var(--primary-dark);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--secondary);
}

.hero-content p {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
}

.point-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 24, 40, 0.06);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.main-card {
  width: 100%;
  max-width: 500px;
  padding: 26px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 6px rgba(18, 183, 106, 0.14);
}

.route-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #fff7f0, #ffffff);
  border: 1px solid rgba(255, 122, 0, 0.12);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 18px;
}

.route-box small,
.mini-card small,
.floating-card span {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.route-box strong,
.mini-card strong,
.floating-card strong {
  color: var(--secondary);
  font-size: 18px;
}

.route-arrow {
  font-size: 26px;
  color: var(--primary);
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-width: 190px;
}

.floating-one {
  top: 40px;
  right: 10px;
}

.floating-two {
  bottom: 50px;
  left: 0;
}

.trust-strip {
  padding: 0 0 30px;
  background: #ffffff;
}

.trust-grid {
  margin-top: -20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.trust-card h3 {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--secondary);
}

.trust-card p {
  color: var(--muted);
  font-weight: 600;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.info-card:hover,
.feature-card:hover,
.workflow-box:hover,
.contact-card:hover {
  transform: translateY(-5px);
}

.info-card h3,
.feature-card h3,
.workflow-box h3,
.contact-card h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--secondary);
}

.info-card p,
.feature-card p,
.workflow-box p,
.contact-card p {
  color: var(--muted);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary-dark);
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(255, 193, 128, 0.18));
  margin-bottom: 18px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.workflow-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  align-items: flex-start;
}

.step span {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, #ff982f, #ff7a00);
}

.step h4 {
  margin-bottom: 4px;
  font-size: 18px;
  color: var(--secondary);
}

.premium-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}

.cta-banner {
  padding: 40px 0 20px;
}

.cta-wrap {
  background: linear-gradient(135deg, #ff9628, #ff7a00);
  border-radius: 30px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-wrap h2,
.cta-wrap p {
  color: var(--white);
}

.cta-label {
  color: rgba(255, 255, 255, 0.86);
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-question span {
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a {
  font-weight: 600;
  color: var(--secondary);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 30px;
  padding-bottom: 34px;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-about {
  margin-top: 16px;
  max-width: 420px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 18px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-wrap div {
  display: flex;
  gap: 18px;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .contact-box,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: auto;
    padding-top: 20px;
    display: block;
  }

  .floating-one,
  .floating-two {
    position: static;
    margin-top: 16px;
  }

  .main-card {
    max-width: 100%;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .topbar-wrap,
  .topbar-right {
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 70px 0 45px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-points,
  .card-grid.four,
  .card-grid.three,
  .trust-grid,
  .mini-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-arrow {
    transform: rotate(90deg);
  }

  .cta-wrap {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .navbar {
    min-height: 74px;
  }

  .logo-text {
    font-size: 18px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 1001;
    box-shadow: 0 -12px 30px rgba(16, 24, 40, 0.12);
  }

  .mobile-sticky-cta a {
    text-align: center;
    padding: 14px 12px;
    font-weight: 700;
    font-size: 14px;
  }

  .mobile-sticky-cta a:first-child {
    background: linear-gradient(135deg, #ff9628, #ff7a00);
    color: #fff;
  }

  .mobile-sticky-cta a:last-child {
    background: #101828;
    color: #fff;
  }

  body {
    padding-bottom: 58px;
  }
}