*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F37021;
  --orange-light: #FFF0E6;
  --orange-dim: rgba(243, 112, 33, 0.12);
  --dark: #1A1A1A;
  --text: #1E1E1E;
  --muted: #666666;
  --light-bg: #F8F8F8;
  --border: #E8E8E8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 72px;
  background: var(--white);
  border-bottom: 1px solid #F0F0F0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: #555;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--orange); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s;
}

.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }

.nav-login {
  font-size: 15px;
  color: #555;
  transition: color 0.2s;
}

.nav-login:hover { color: var(--text); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #e0631a; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 680px;
  padding: 80px 80px;
  background: var(--dark);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--orange-dim);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 800px;
}

.hero-sub {
  font-size: 18px;
  color: #AAAAAA;
  line-height: 1.6;
  max-width: 580px;
  margin-top: 24px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.btn-hero-primary {
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-hero-primary:hover { background: #e0631a; transform: translateY(-1px); }

.btn-hero-secondary {
  padding: 16px 32px;
  background: transparent;
  color: #CCCCCC;
  font-size: 17px;
  border-radius: 8px;
  border: 1px solid #444;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-hero-secondary:hover { border-color: #888; color: var(--white); }

/* hero-trust removed */

/* ── SECTIONS COMMON ── */
.section {
  padding: 80px 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── PRODUCT SHOWCASE ── */
.showcase {
  background: #111111;
  padding: 64px 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.showcase-label {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.5px;
}

.browser-frame {
  width: 100%;
  max-width: 1100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  border: 1px solid #2A2A2A;
}

.browser-chrome {
  background: #222222;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #444;
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-bar {
  flex: 1;
  background: #1A1A1A;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: #666;
  font-family: monospace;
}

/* App shell inside browser */
.app-shell {
  display: flex;
  height: 460px;
  background: #F5F6FA;
}

.app-sidebar {
  width: 200px;
  background: #1E1E1E;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.app-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.sidebar-icon-mark {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 4px;
  flex-shrink: 0;
}

.app-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 13px;
  color: #888;
  cursor: default;
  border-radius: 0;
  transition: background 0.15s;
}

.app-nav-item.active {
  background: rgba(243,112,33,0.15);
  color: var(--orange);
  border-left: 3px solid var(--orange);
  padding-left: 13px;
}

.nav-icon { font-size: 8px; }

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.app-topbar {
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-page-title {
  font-size: 16px;
  font-weight: 700;
  color: #1E1E1E;
}

.app-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-bell { font-size: 16px; cursor: default; }

.app-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.stat-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #1E1E1E;
  line-height: 1;
}

.stat-bar {
  height: 4px;
  background: #F0F0F0;
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

.app-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.app-table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: 10px 20px;
  background: #FAFAFA;
  border-bottom: 1px solid #F0F0F0;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: 12px 20px;
  border-bottom: 1px solid #F8F8F8;
  font-size: 13px;
  color: #444;
  align-items: center;
}

.app-table-row:last-child { border-bottom: none; }

.badge-status {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.badge-status.in-progress { background: #FFF0E6; color: var(--orange); }
.badge-status.done { background: #E8F5E9; color: #2E7D32; }
.badge-status.pending { background: #F5F5F5; color: #999; }

/* ── HOW IT WORKS ── */
.how { background: var(--white); }

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

.step {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step:nth-child(odd) { background: #FFF8F3; border-radius: 16px; }
.step:nth-child(even) { background: var(--white); }

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FEATURES ── */
.features { background: var(--light-bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing { background: var(--white); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.plan-card.dark {
  background: #1A1A1A;
  border-color: #2A2A2A;
  position: relative;
}

.plan-badge {
  display: inline-flex;
  align-self: flex-end;
  padding: 6px 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 0 20px 0 0;
}

.plan-top {
  padding: 36px 36px 24px;
  background: #F8F8F8;
}

.plan-card.dark .plan-top {
  background: transparent;
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.plan-card.dark .plan-name { color: var(--white); }

.plan-desc {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-top: 20px;
}

.plan-amount {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.plan-card.dark .plan-amount { color: var(--white); }

.plan-period {
  font-size: 16px;
  color: #888;
  padding-bottom: 6px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 0 36px;
}

.plan-card.dark .plan-divider { background: #333; }

.plan-features {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #444;
}

.plan-card.dark .plan-feature { color: #CCC; }

.plan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.plan-cta {
  padding: 0 36px 36px;
}

.btn-plan-outline {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border: 2px solid var(--orange);
  border-radius: 10px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-plan-outline:hover { background: var(--orange); color: var(--white); }

.btn-plan-filled {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--orange);
  border: none;
  border-radius: 10px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-plan-filled:hover { background: #e0631a; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--orange);
  padding: 100px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.final-cta h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.final-cta-btns {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
}

.btn-white:hover { transform: translateY(-2px); }

.btn-ghost-white {
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 17px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-ghost-white:hover { border-color: var(--white); }

/* ── FOOTER ── */
footer {
  background: #111111;
  padding: 60px 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px auto auto;
  gap: 80px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); }

.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.footer-col { display: flex; flex-direction: column; gap: 14px; }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col a {
  font-size: 14px;
  color: #888;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-divider { height: 1px; background: #222; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 13px; color: #555; }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a { font-size: 13px; color: #555; transition: color 0.2s; }
.footer-legal a:hover { color: #888; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .navbar, .hero, .section, .final-cta, footer { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 60px 24px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
  .section { padding: 60px 24px; }
  .section-title { font-size: 28px; }
  .steps-grid, .features-grid, .pricing-cards { grid-template-columns: 1fr; }
  .step:nth-child(even) { background: var(--white); }
  .final-cta { padding: 60px 24px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta-btns { flex-direction: column; width: 100%; }
  .btn-white, .btn-ghost-white { width: 100%; text-align: center; }
  footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
