:root {
  --orange: #ff6500;
  --orange-2: #ff8a00;
  --amber: #f7b733;
  --ink: #111417;
  --ink-2: #242a30;
  --muted: #5f6872;
  --line: #e7e9ec;
  --soft: #f7f8fa;
  --white: #ffffff;
  --success: #15803d;
  --shadow: 0 22px 60px rgba(17, 20, 23, 0.14);
  --radius: 24px;
}
* { 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(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 850; color: var(--orange); }
.gradient-text { background: linear-gradient(90deg, var(--orange), #ff9d00); -webkit-background-clip: text; background-clip: text; color: transparent; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231,233,236,.8);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 250px; max-height: 56px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-weight: 700; color: var(--ink-2); font-size: .95rem; }
.nav-links a:hover { color: var(--orange); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 14px;
  text-decoration: none; border: 1px solid transparent; font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #fff; box-shadow: 0 12px 28px rgba(255,101,0,.28); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(255,101,0,.36); }
.btn-secondary { background: #fff; border-color: #d9dde2; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(247,183,51,.18), transparent 26%),
    radial-gradient(circle at 8% 25%, rgba(255,101,0,.08), transparent 20%),
    linear-gradient(180deg, #fff, #fbfbfc);
  padding: 76px 0 58px;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 54px; }
.hero h1 { margin: 12px 0 20px; font-size: clamp(2.7rem, 5.5vw, 5.25rem); line-height: .97; letter-spacing: -.055em; max-width: 800px; }
.hero-lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: #333a42; max-width: 760px; margin-bottom: 26px; }
.hero-lead strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.microcopy { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: .92rem; }
.microcopy span::before { content: "✓"; color: var(--success); font-weight: 900; margin-right: 6px; }
.product-wrap { position: relative; }
.product-wrap::before { content: ""; position: absolute; inset: 12% 4% 0 10%; background: linear-gradient(145deg, rgba(255,101,0,.18), rgba(247,183,51,.06)); filter: blur(32px); border-radius: 50%; }
.product-box { position: relative; width: 100%; max-height: 610px; object-fit: contain; filter: drop-shadow(0 26px 26px rgba(20,20,20,.17)); }
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { padding: 24px 22px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 1.18rem; }
.trust-item span { color: var(--muted); font-size: .9rem; }
.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--ink); color: #fff; }
.section-head { max-width: 780px; margin-bottom: 42px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section h2 { font-size: clamp(2.05rem, 4vw, 3.7rem); line-height: 1.02; letter-spacing: -.04em; margin: 10px 0 15px; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section-dark .section-head p { color: #bbc0c5; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: 0 8px 24px rgba(20,20,20,.04); }
.value-card .icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: #fff1e7; color: var(--orange); font-size: 1.45rem; margin-bottom: 18px; }
.value-card h3 { margin: 0 0 8px; font-size: 1.18rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .96rem; }
.problem-solution { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); background: #fff; }
.panel.bad { background: #fff7f3; border-color: #ffd8c1; }
.panel.good { background: #f8fffb; border-color: #cdebd9; }
.panel h3 { font-size: 1.55rem; margin: 0 0 18px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: #3f464d; }
.check-list li::before { content: "✓"; flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: #eaf7ef; color: var(--success); font-weight: 900; display: grid; place-items: center; font-size: .82rem; margin-top: 1px; }
.panel.bad .check-list li::before { content: "×"; background: #ffe7da; color: #c2410c; }
.feature-groups { display: grid; gap: 20px; }
.feature-group { border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; }
.feature-group summary { list-style: none; cursor: pointer; padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-weight: 900; font-size: 1.18rem; }
.feature-group summary::-webkit-details-marker { display:none; }
.feature-group summary::after { content: "+"; width: 34px; height: 34px; border-radius: 50%; background: #fff3e8; color: var(--orange); display:grid; place-items:center; font-size: 1.35rem; }
.feature-group[open] summary::after { content: "−"; }
.feature-body { border-top: 1px solid var(--line); padding: 22px 26px 28px; }
.feature-body p { color: var(--muted); margin-top: 0; }
.feature-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px 32px; }
.feature-block h4 { margin: 0 0 9px; font-size: 1rem; }
.feature-block ul { margin: 0; padding-left: 18px; color: #4c555e; }
.feature-block li { margin: 5px 0; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 62px 22px 24px; }
.step::before { counter-increment: step; content: counter(step); position:absolute; top:20px; left:22px; width:30px; height:30px; border-radius:50%; background:var(--ink); color:#fff; display:grid; place-items:center; font-weight:900; }
.step h3 { margin: 0 0 7px; }
.step p { color: var(--muted); margin: 0; font-size: .94rem; }
.safety-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.safety-card { border: 1px solid #30363d; border-radius: 18px; padding: 24px; background: #181c20; }
.safety-card h3 { margin-top: 0; }
.safety-card p { color: #b8bec5; margin-bottom: 0; }
.cta { padding: 88px 0; background: linear-gradient(135deg, #ff6a00, #f9a000); color: #fff; }
.cta-wrap { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items:center; }
.cta h2 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -.04em; line-height: 1; }
.cta p { margin:0; font-size:1.08rem; color: rgba(255,255,255,.92); max-width:760px; }
.cta .btn { background:#111417; color:#fff; min-width:220px; }
.faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background:#fff; padding: 0 20px; }
.faq summary { cursor:pointer; font-weight:850; padding:20px 0; }
.faq p { color:var(--muted); margin:0 0 20px; }
.footer { background:#0d0f11; color:#d3d7da; padding:32px 0; }
.footer-wrap { display:flex; justify-content:space-between; gap:20px; align-items:center; }
.footer img { width:190px; height:50px; object-fit:contain; object-position:left center; filter: brightness(3) grayscale(1); opacity:.88; }
.footer p { margin:0; font-size:.88rem; color:#929aa2; }

/* Job-ad landing page */
.job-page { min-height:100vh; background: radial-gradient(circle at 85% 10%, rgba(247,183,51,.18), transparent 24%), #fff; }
.job-shell { min-height:100vh; display:grid; grid-template-rows:auto 1fr auto; }
.job-main { display:grid; place-items:center; padding:70px 0 90px; }
.job-card { width:min(900px, 100%); border:1px solid var(--line); border-radius:30px; box-shadow:var(--shadow); background:#fff; overflow:hidden; }
.job-card-top { height:8px; background:linear-gradient(90deg,var(--orange),var(--amber)); }
.job-card-inner { padding: clamp(30px, 6vw, 68px); text-align:center; }
.job-badge { display:inline-flex; align-items:center; gap:8px; border-radius:999px; padding:8px 13px; background:#fff1e7; color:#b54800; font-weight:850; font-size:.84rem; }
.job-card h1 { margin:18px auto 16px; font-size:clamp(2.25rem,5vw,4.5rem); line-height:.98; letter-spacing:-.05em; max-width:760px; }
.job-card .job-sub { font-size:1.16rem; color:var(--muted); max-width:680px; margin:0 auto 30px; }
.job-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; }
.job-note { margin:24px auto 0; max-width:680px; font-size:.86rem; color:#7b848d; }
.job-proof { margin-top:34px; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.job-proof div { background:#f8f9fa; border-radius:14px; padding:16px 10px; font-size:.86rem; font-weight:800; }

@media (max-width: 900px) {
  .nav-links a:not(.btn) { display:none; }
  .brand img { width:210px; }
  .hero { padding-top:48px; }
  .hero-grid, .problem-solution, .cta-wrap { grid-template-columns:1fr; }
  .product-wrap { max-width:620px; margin:10px auto 0; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right:0; }
  .trust-item:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .value-grid, .safety-grid { grid-template-columns:1fr 1fr; }
  .steps { grid-template-columns:1fr 1fr; }
  .cta .btn { justify-self:start; }
  .job-proof { grid-template-columns:1fr 1fr; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 26px, 1180px); }
  .nav { height:68px; }
  .brand img { width:170px; }
  .nav-links { gap:10px; }
  .nav-links .btn { min-height:42px; padding:0 14px; font-size:.85rem; }
  .hero h1 { font-size:clamp(2.45rem, 13vw, 4rem); }
  .section { padding:70px 0; }
  .value-grid, .safety-grid, .steps, .feature-columns { grid-template-columns:1fr; }
  .trust-item { padding:20px 8px; }
  .footer-wrap { flex-direction:column; align-items:flex-start; }
  .job-card-inner { padding:34px 22px; }
  .job-proof { grid-template-columns:1fr; }
}


/* SEO/performance image wrappers + social sharing */
.brand picture,
.footer-wrap picture,
.product-wrap picture { display: contents; }
.facebook-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem .9rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.facebook-share:hover { transform: translateY(-1px); }
