:root {
  --orange: #f28c28;
  --orange-dark: #e96b1c;
  --red: #ef2b16;
  --bg: #fbfbfc;
  --white: #ffffff;
  --text: #202633;
  --muted: #667085;
  --line: #e7e7ec;
  --soft: #fff2e6;
  --soft-2: #f6f7f9;
  --shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand img { width: 200px; height: auto; object-fit: contain; }
.nav { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: flex-end; }
.nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover, .nav a.active { background: #f3f4f6; color: var(--text); }
.nav .cta, .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: var(--shadow);
}
.nav .cta:hover, .btn-primary:hover { color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(242, 140, 40, 0.18), transparent 30%),
    radial-gradient(circle at right bottom, rgba(239, 43, 22, 0.08), transparent 25%),
    linear-gradient(180deg, #fff, #fcfcfd);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 40px; align-items: center; padding: 64px 0 48px; }
.eyebrow {
  display: inline-flex; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.88); color: var(--muted); font-size: 14px; font-weight: 700;
}
h1, .page-title {
  margin: 18px 0 0; font-size: clamp(2.4rem, 4vw, 4.8rem); line-height: 0.98; letter-spacing: -0.04em;
}
.page-title { font-size: clamp(2.1rem, 3.6vw, 4.1rem); }
.lead, .page-lead { margin-top: 22px; max-width: 720px; font-size: 1.1rem; color: var(--muted); }
.hero-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 20px; border-radius: 18px;
  font-size: 15px; font-weight: 800; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--text); }
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: 34px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); }
.stat strong { display: block; font-size: 1.5rem; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; font-weight: 600; }

.hero-card, .panel-shell {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 20px; box-shadow: var(--shadow); overflow: hidden;
}
.hero-card::before, .hero-card::after, .panel-shell::before, .panel-shell::after {
  content: ""; position: absolute; border-radius: 999px; z-index: 0;
}
.hero-card::before, .panel-shell::before { width: 180px; height: 180px; right: -50px; top: -50px; background: rgba(242,140,40,0.16); }
.hero-card::after, .panel-shell::after { width: 140px; height: 140px; left: -30px; bottom: -40px; background: rgba(239,43,22,0.08); }
.hero-panel, .color-panel {
  position: relative; z-index: 1; border-radius: 26px; padding: 26px; color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}
.hero-panel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.chip { background: rgba(255,255,255,0.18); padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.panel-kicker { color: rgba(255,255,255,0.86); font-size: 14px; font-weight: 700; }
.panel-title { margin-top: 6px; font-size: 2rem; line-height: 1; font-weight: 900; letter-spacing: -0.03em; }
.panel-list { display: grid; gap: 12px; margin-top: 24px; }
.panel-item { padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,0.15); font-size: 14px; font-weight: 700; }
.mini-grid { position: relative; z-index: 1; margin-top: 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.mini-card { padding: 18px; border-radius: 18px; font-weight: 800; background: var(--soft); color: var(--text); }
.mini-card span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; margin-bottom: 8px; }

section { padding: 72px 0; }
.logos-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; padding: 18px 0; }
.logos-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.logos-row strong { color: var(--text); font-size: 14px; }
.badge {
  display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--soft-2); color: var(--muted); font-size: 14px; font-weight: 700;
}
.section-head { max-width: 800px; margin-bottom: 28px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p.kicker { margin: 0; color: var(--muted); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .18em; }
.section-head h2 { margin: 14px 0 0; font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.02; letter-spacing: -0.04em; }
.section-head .text { margin-top: 16px; font-size: 1.05rem; color: var(--muted); }
.grid-4, .grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin: 0; font-size: 1.3rem; letter-spacing: -0.02em; }
.card p { margin: 12px 0 0; color: var(--muted); font-size: 15px; }
.card ul, .tick-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.card li, .tick-list li { display: flex; gap: 10px; color: #525866; font-size: 14px; font-weight: 600; }
.dot {
  width: 10px; height: 10px; border-radius: 999px; background: linear-gradient(135deg, var(--red), var(--orange)); flex: 0 0 auto; margin-top: 6px;
}
.card .link-btn {
  margin-top: 20px; display: inline-flex; padding: 12px 16px; border-radius: 16px;
  background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; font-size: 14px; font-weight: 800;
}
.soft-section { background: var(--soft); }
.process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.step { padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.step strong {
  display: inline-flex; width: 38px; height: 38px; border-radius: 999px; align-items: center; justify-content: center; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; font-size: 14px;
}
.testimonial { font-size: 1.05rem; color: #3b4252; line-height: 1.8; margin: 0; }
.testimonial-name { margin-top: 18px; color: var(--muted); font-size: 14px; font-weight: 800; }
.remote-box { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px; border-radius: 34px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.download-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 22px; }
.download { border: 1px solid var(--line); border-radius: 22px; background: var(--soft-2); padding: 18px; }
.download strong { display: block; font-size: 15px; }
.download a {
  margin-top: 12px; display: inline-flex; padding: 10px 14px; border-radius: 14px; color: #fff; font-size: 14px; font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--orange));
}
.contact-grid { display: grid; grid-template-columns: 1fr 0.95fr; gap: 24px; align-items: start; }
.contact-info { display: grid; gap: 12px; margin-top: 24px; color: var(--muted); font-weight: 600; }
.form { display: grid; gap: 14px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; font: inherit; background: #fff; color: var(--text);
}
.form textarea { min-height: 140px; resize: vertical; }
.page-hero { padding: 56px 0 18px; }
.page-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.notice-box { padding: 18px; border-radius: 20px; background: var(--soft); color: var(--text); font-weight: 700; }
.footer { border-top: 1px solid var(--line); background: #fff; padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; align-items: center; color: var(--muted); font-size: 14px; font-weight: 700; }
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid, .remote-box, .contact-grid, .grid-4, .grid-3, .grid-2, .process, .download-grid, .page-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid, .page-grid, .remote-box, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .topbar-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
  .brand img { width: 170px; }
  .hero-stats, .grid-4, .grid-3, .grid-2, .process, .download-grid, .mini-grid { grid-template-columns: 1fr; }
  .nav { justify-content: flex-start; }
  section { padding: 56px 0; }
  .hero-grid { padding-top: 46px; }
  h1, .page-title { line-height: 1.02; }
}
