
:root {
  --orange: #ff6500;
  --orange-dark: #d94e00;
  --navy: #111820;
  --navy-2: #1c2733;
  --text: #17202a;
  --muted: #667085;
  --light: #f6f7f9;
  --line: #e5e7eb;
  --white: #ffffff;
  --success: #087f5b;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(17, 24, 32, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-sm { padding: 54px 0; }
.bg-soft { background: var(--light); }
.bg-dark { background: var(--navy); color: var(--white); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(229,231,235,.85);
  backdrop-filter: blur(14px);
}
.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 650;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 9px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { background: #fff; border-color: var(--line); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark { background: var(--navy); color: #fff; }

.hero {
  padding: 86px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,101,0,.13), transparent 32%),
    linear-gradient(180deg, #fff, #fafafa);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 46px;
}
.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 850;
}
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 70px); letter-spacing: -.045em; margin-bottom: 22px; }
h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.lead { font-size: 19px; color: var(--muted); max-width: 680px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-note { margin-top: 20px; color: var(--muted); font-size: 14px; }
.hero-visual {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 10px;
}
.hero-visual img { border-radius: 18px; width: 100%; }

.trust-grid, .cards-4, .cards-3, .cards-2 {
  display: grid;
  gap: 20px;
}
.trust-grid { grid-template-columns: repeat(4, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 25px;
  background: #fff;
}
.card:hover { border-color: rgba(255,101,0,.45); }
.card-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255,101,0,.10); color: var(--orange);
  font-size: 23px; margin-bottom: 18px;
}
.card p { color: var(--muted); margin-bottom: 0; }
.dark-card { background: var(--navy-2); border-color: rgba(255,255,255,.10); }
.dark-card p { color: #c8d0d9; }

.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.workflow {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  align-items: start;
}
.workflow-step { text-align: center; position: relative; }
.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute; top: 24px; left: 65%;
  width: 70%; height: 1px; background: #f5b58e;
}
.workflow-dot {
  width: 50px; height: 50px; border-radius: 50%;
  margin: 0 auto 10px;
  display: grid; place-items: center;
  border: 1px solid #ffb98d; color: var(--orange);
  background: #fff; font-weight: 850;
}
.workflow-step span { font-size: 13px; font-weight: 700; }

.edition { position: relative; }
.edition.featured { border: 2px solid var(--orange); }
.badge {
  display: inline-flex; align-items: center;
  padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800;
  background: rgba(255,101,0,.11); color: var(--orange);
}
.edition.featured .badge { position: absolute; right: 18px; top: 18px; }
.edition ul, .check-list { padding: 0; margin: 20px 0 0; list-style: none; }
.edition li, .check-list li { margin: 9px 0; color: var(--muted); }
.edition li::before, .check-list li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 9px; }

.cta-band {
  border-radius: 26px;
  padding: 40px;
  background: linear-gradient(120deg, var(--navy), #283746);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band p { color: #d6dde5; margin-bottom: 0; }

.page-hero {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff, #f7f7f8);
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { max-width: 780px; }

.feature-group { margin-bottom: 46px; }
.feature-group:last-child { margin-bottom: 0; }

.industry-card { min-height: 215px; }
.industry-card .badge { margin-bottom: 12px; }

.pricing-note {
  padding: 22px;
  border-radius: 16px;
  border-left: 4px solid var(--orange);
  background: #fff7f1;
  color: #61311a;
}

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 750; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd4dc;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,101,0,.10);
}
textarea { min-height: 140px; resize: vertical; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 30px; }
.contact-panel { background: var(--navy); color: #fff; border-radius: 24px; padding: 30px; }
.contact-panel p { color: #d5dce3; }
.contact-item { margin-top: 20px; }

footer { background: #0d1218; color: #fff; padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-brand img { height: 58px; filter: brightness(1.1); }
.footer-col h4 { margin: 0 0 14px; }
.footer-col a { display: block; color: #c6cdd5; margin: 8px 0; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 38px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px;
  color: #aeb7c1; font-size: 13px;
}

.notice {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #e9f8f2;
  color: var(--success);
  font-weight: 650;
}

@media (max-width: 960px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .trust-grid, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: repeat(4, 1fr); row-gap: 30px; }
  .workflow-step::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
}
@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .hero { padding-top: 55px; }
  .trust-grid, .cards-4, .cards-3, .cards-2, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 28px; align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .brand img { height: 40px; }
}


.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,247,250,0.98));
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.08) inset;
  max-width: 100%;
}
.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,101,0,0.12);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,101,0,0.2);
  flex: 0 0 auto;
}
.footer-brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-brand .footer-logo-frame img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.35));
}
.footer-brand p { color: #c6cdd5; margin-top: 0; }

.footer-brand .footer-simple-logo {
  height: 72px;
  width: auto;
  max-width: 100%;
  margin-bottom: 14px;
}
@media (max-width: 640px) {
  .footer-brand .footer-simple-logo { height: 58px; }
}
