*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #eb6028;
  --blue: #83b4fa;
  --dark: #353638;
  --mid: #555758;
  --muted: #888;
  --border: #e8e8e8;
  --card-bg: #f4f4f4;
  --white: #ffffff;
  --sans: 'Poppins', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--dark); -webkit-font-smoothing: antialiased; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 3rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--dark); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.btn-nav-ghost { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--dark); background: transparent; border: 2px solid var(--border); padding: 9px 22px; border-radius: 100px; cursor: pointer; text-decoration: none; transition: border-color 0.2s; }
.btn-nav-ghost:hover { border-color: var(--dark); }
.btn-nav-primary { font-family: var(--sans); font-size: 14px; font-weight: 600; color: white; background: var(--orange); border: none; padding: 10px 24px; border-radius: 100px; cursor: pointer; text-decoration: none; transition: opacity 0.2s; }
.btn-nav-primary:hover { opacity: 0.88; }

/* HERO */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 90px 3rem 80px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 16px; font-weight: 400;
  color: var(--mid); line-height: 1.7;
  max-width: 420px; margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-pill-fill {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: white; background: var(--orange);
  border: none; padding: 14px 28px;
  border-radius: 100px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: opacity 0.2s;
}
.btn-pill-fill:hover { opacity: 0.88; }
.btn-pill-fill .arrow-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-pill-outline {
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--dark); background: transparent;
  border: 2px solid var(--border); padding: 13px 28px;
  border-radius: 100px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color 0.2s;
}
.btn-pill-outline:hover { border-color: var(--dark); }
.btn-pill-outline .arrow-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-card {
  background: white; border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}
.hero-card-bar {
  background: var(--dark); padding: 11px 16px;
  display: flex; align-items: center; gap: 6px;
}
.hc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-body { display: flex; }
.hc-sidebar {
  background: #1e1f21; width: 54px;
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 0; gap: 18px;
}
.hc-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.hc-icon.active { background: var(--orange); }
.hc-icon svg { width: 17px; height: 17px; }
.hc-content { flex: 1; padding: 18px; background: #f9f8f5; }
.hc-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.hc-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.hc-stat { background: white; border-radius: 9px; padding: 10px 12px; border: 1px solid #ebebeb; }
.hc-stat-l { font-size: 9px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.hc-stat-v { font-size: 20px; font-weight: 700; color: var(--dark); }
.hc-stat-v.or { color: var(--orange); }
.hc-stat-v.bl { color: var(--blue); }
.hc-table { background: white; border-radius: 9px; border: 1px solid #ebebeb; overflow: hidden; }
.hc-tr { display: flex; align-items: center; padding: 8px 12px; border-bottom: 1px solid #f4f4f4; gap: 8px; font-size: 11px; }
.hc-tr:last-child { border-bottom: none; }
.hc-tr.hd { background: #fafafa; font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.tc1 { flex: 1; font-weight: 600; color: var(--dark); }
.tc2 { width: 48px; color: var(--muted); }
.tc3 { width: 62px; }
.pill { display: inline-block; padding: 2px 9px; border-radius: 100px; font-size: 10px; font-weight: 700; }
.p-green { background: #e8f5e9; color: #2e7d32; }
.p-blue { background: #e8f0ff; color: #1a5fb4; }
.p-amber { background: #fff3e0; color: #e65100; }
.float-a {
  position: absolute; top: -16px; right: -18px;
  background: white; border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px 16px; min-width: 150px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.float-b {
  position: absolute; bottom: -14px; left: -18px;
  background: white; border-radius: 14px;
  border: 1px solid var(--border);
  padding: 14px 16px; min-width: 140px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.fl-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 4px; }
.fl-val { font-size: 24px; font-weight: 700; color: var(--dark); }
.fl-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.fl-val.or { color: var(--orange); }

/* SECTION COMMON */
.section-wrap { padding: 90px 3rem; }
.section-wrap.grey { background: #f9f9f9; }
.section-center { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-center h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700; letter-spacing: -1.5px;
  color: var(--dark); margin-bottom: 12px; line-height: 1.1;
}
.section-center p { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* FEATURES GRID */
.features-outer { max-width: 1200px; margin: 0 auto; }
.features-grid-new {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--card-bg);
  border-radius: 18px; padding: 0;
  overflow: hidden;
  transition: transform 0.2s;
}
.feat-card:hover { transform: translateY(-3px); }
.feat-illus {
  background: #ebebeb;
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feat-illus svg { opacity: 0.18; }
.feat-illus-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.feat-body { padding: 24px 28px 28px; }
.feat-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feat-body p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.feat-link { font-size: 14px; font-weight: 600; color: var(--orange); text-decoration: none; }
.feat-link:hover { text-decoration: underline; }

/* TABS SECTION */
.tabs-section { max-width: 1200px; margin: 0 auto; }
.tabs-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tab-pill {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 10px 22px; border-radius: 100px;
  border: 2px solid var(--border); background: white;
  color: var(--dark); cursor: pointer; transition: all 0.2s;
}
.tab-pill.active { background: var(--orange); border-color: var(--orange); color: white; }
.tab-pill:hover:not(.active) { border-color: var(--dark); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.tab-text h3 { font-size: 36px; font-weight: 700; letter-spacing: -1px; color: var(--dark); margin-bottom: 14px; line-height: 1.15; }
.tab-text p { font-size: 15px; color: var(--mid); line-height: 1.75; }
.tab-visual {
  background: white; border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
}
.tab-visual-bar {
  background: var(--dark); padding: 10px 14px;
  display: flex; align-items: center; gap: 5px;
}
.tab-visual-body { padding: 20px; }

/* SPOTLIGHT ROWS */
.spotlight-section { max-width: 1200px; margin: 0 auto; }
.sp-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.sp-row:last-child { border-bottom: none; }
.sp-row.rev .sp-text { order: 2; }
.sp-row.rev .sp-vis { order: 1; }
.sp-text h2 { font-size: clamp(28px, 2.8vw, 38px); font-weight: 700; letter-spacing: -1px; color: var(--dark); margin-bottom: 14px; line-height: 1.15; }
.sp-text p { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 1.5rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; font-size: 14px; color: var(--mid); align-items: flex-start; }
.check-list li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%; background: #fff3ef;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23eb6028' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.sp-vis {
  background: var(--card-bg); border-radius: 18px;
  overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: stretch;
}
.sp-vis-inner { flex: 1; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.sp-vis-title { font-size: 13px; font-weight: 700; color: var(--dark); display: flex; align-items: center; justify-content: space-between; }
.sp-tag { background: white; border: 1px solid var(--border); color: var(--orange); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 100px; }
.sp-row-item { background: white; border-radius: 10px; padding: 11px 14px; display: flex; align-items: center; gap: 10px; border: 1px solid #f0f0f0; }
.sp-av { width: 30px; height: 30px; border-radius: 50%; background: #fff3ef; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.sp-av.bl { background: #eef4ff; color: var(--blue); }
.sp-info-name { font-size: 12px; font-weight: 700; color: var(--dark); }
.sp-info-sub { font-size: 10px; color: var(--muted); }
.sp-info { flex: 1; }

/* CTA */
.cta-wrap {
  background: var(--dark);
  padding: 90px 3rem; text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-label {
  display: inline-block;
  background: rgba(235,96,40,0.15);
  color: var(--orange);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 1.5rem;
}
.cta-wrap h2 { font-size: clamp(32px,4vw,50px); font-weight: 700; letter-spacing: -1.5px; color: white; line-height: 1.1; margin-bottom: 1rem; }
.cta-wrap p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-fill { font-family:var(--sans); font-size:15px; font-weight:600; color:white; background:var(--orange); border:none; padding:14px 32px; border-radius:100px; cursor:pointer; text-decoration:none; transition:opacity 0.2s; }
.btn-cta-fill:hover { opacity:0.88; }
.btn-cta-out { font-family:var(--sans); font-size:15px; font-weight:600; color:rgba(255,255,255,0.85); background:transparent; border:2px solid rgba(255,255,255,0.2); padding:13px 32px; border-radius:100px; cursor:pointer; text-decoration:none; transition:border-color 0.2s; }
.btn-cta-out:hover { border-color:rgba(255,255,255,0.6); }

/* FOOTER */
footer { background: #1e1f21; padding: 3rem; }
.footer-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1.5rem; }
.footer-links { display:flex; gap:2rem; list-style:none; }
.footer-links a { color:rgba(255,255,255,0.4); text-decoration:none; font-size:13px; font-weight:500; transition:color 0.2s; }
.footer-links a:hover { color:rgba(255,255,255,0.8); }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.3); }

/* MODAL */
.modal-bg { display:none; position:fixed; inset:0; z-index:1000; background:rgba(0,0,0,0.5); align-items:center; justify-content:center; padding:1rem; }
.modal-bg.open { display:flex; }
.modal { background:white; border-radius:20px; padding:2.5rem; width:100%; max-width:440px; position:relative; }
.modal-close { position:absolute; top:16px; right:16px; width:32px; height:32px; border-radius:100px; background:#f4f4f4; border:none; cursor:pointer; font-size:16px; color:var(--muted); display:flex; align-items:center; justify-content:center; }
.modal h3 { font-size:22px; font-weight:700; letter-spacing:-0.5px; color:var(--dark); margin-bottom:6px; }
.modal .modal-sub { font-size:14px; color:var(--muted); margin-bottom:1.75rem; }
.form-group { margin-bottom:1rem; }
.form-label { display:block; font-size:13px; font-weight:600; color:var(--mid); margin-bottom:6px; }
.form-input { width:100%; font-family:var(--sans); font-size:14px; color:var(--dark); background:#f7f7f7; border:1.5px solid var(--border); border-radius:10px; padding:11px 14px; outline:none; transition:border-color 0.2s; }
.form-input:focus { border-color:var(--orange); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.btn-submit { width:100%; font-family:var(--sans); font-size:15px; font-weight:700; color:white; background:var(--orange); border:none; padding:14px; border-radius:100px; cursor:pointer; margin-top:0.5rem; transition:opacity 0.2s; }
.btn-submit:hover { opacity:0.88; }
.login-tabs { display:flex; gap:0; background:#f4f4f4; border-radius:100px; padding:4px; margin-bottom:1.5rem; }
.login-tab { flex:1; text-align:center; padding:9px; font-size:13px; font-weight:600; color:var(--muted); border-radius:100px; cursor:pointer; transition:all 0.2s; }
.login-tab.active { background:white; color:var(--dark); box-shadow:0 1px 4px rgba(0,0,0,0.1); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns:1fr; padding:50px 1.5rem; }
  .hero-visual { display:none; }
  .features-grid-new { grid-template-columns:1fr 1fr; }
  nav .nav-links { display:none; }
  .tab-content.active { grid-template-columns:1fr; }
  .sp-row { grid-template-columns:1fr; }
  .sp-row.rev .sp-text, .sp-row.rev .sp-vis { order:unset; }
}
@media (max-width:600px) {
  .features-grid-new { grid-template-columns:1fr; }
  .nav-inner { padding: 0 1.25rem; }
  .section-wrap { padding: 60px 1.5rem; }
}
/* Arrow button styles */
.btn-cta-fill, .btn-cta-out {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-cta-out .btn-arrow {
  background: rgba(255,255,255,0.12);
}
