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

:root {
  --orange: #F4A44B;
  --orange-dark: #E8921E;
  --orange-glow: rgba(244,164,75,0.18);
  --blue: #4B9EFF;
  --bg: #080B18;
  --bg2: #0F1120;
  --card: #13172A;
  --card2: #181D32;
  --border: rgba(255,255,255,0.07);
  --text: #E8E8F0;
  --muted: #7878A0;
  --green: #50BE46;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.accent { color: var(--orange); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 10px; font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #0A0B18; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 24px var(--orange-glow); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: 12px; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,11,24,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px; height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text); font-weight: 700; font-size: 15px; white-space: nowrap;
}
.nav-logo-icon {
  width: 32px; height: 32px; background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #0A0B18;
}
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; padding: 9px 20px; font-size: 14px; }

/* HERO */
.hero {
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(244,164,75,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 20% 70%, rgba(75,158,255,0.06) 0%, transparent 60%), var(--bg);
  padding: 80px 0 0;
  position: relative;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; padding: 6px 14px;
  background: rgba(80,190,70,0.12); border: 1px solid rgba(80,190,70,0.3);
  border-radius: 20px; font-size: 13px; color: #6dcc63; font-weight: 500;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(40px, 5vw, 60px); font-weight: 800; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px;
}
.hero-sub { font-size: 17px; color: var(--muted); max-width: 480px; margin-bottom: 32px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 12px; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-card-mock {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  width: 100%; max-width: 360px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.mock-header {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px;
  background: var(--card2); border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #febc2e; }
.mock-dot.g { background: #28c840; }
.mock-title { flex: 1; text-align: center; font-size: 12px; color: var(--muted); }
.mock-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; max-height: 280px; }
.mock-vacancy {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  background: var(--card2); border-radius: 10px; border: 1px solid var(--border);
  transition: all 0.3s;
}
.mock-vacancy.active { border-color: var(--orange); background: rgba(244,164,75,0.06); }
.mock-vline { width: 3px; height: 36px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.mock-vtext { flex: 1; }
.mock-vtitle { font-size: 13px; font-weight: 600; color: var(--text); }
.mock-vsub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.mock-vbtn {
  flex-shrink: 0; font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 6px;
}
.mock-vbtn.sent { background: rgba(80,190,70,0.15); color: #6dcc63; }
.mock-vbtn.loading { background: rgba(244,164,75,0.15); display: flex; align-items: center; }
.spinner {
  width: 14px; height: 14px; border: 2px solid rgba(244,164,75,0.3);
  border-top-color: var(--orange); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mock-panel {
  padding: 10px 14px 13px; border-top: 1px solid var(--border); font-size: 12px;
}
.panel-top {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.panel-chip {
  display: flex; align-items: center; gap: 5px;
  background: rgba(40,200,64,0.12); border: 1px solid rgba(40,200,64,0.25);
  border-radius: 20px; padding: 3px 9px; color: #5de870; font-size: 11px; font-weight: 500;
}
.chip-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #28c840;
  box-shadow: 0 0 5px #28c840; animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.panel-timer { color: var(--muted); font-size: 11px; }
.mock-stats-header {
  font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.28); margin-bottom: 7px;
}
.mock-stats { display: flex; flex-direction: column; gap: 7px; }
.mock-stat-row { display: flex; align-items: center; gap: 7px; }
.mock-stat-icon {
  width: 20px; height: 20px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 11px; flex-shrink: 0;
}
.mock-stat-icon.s-green { background: rgba(40,200,64,.15); }
.mock-stat-icon.s-red   { background: rgba(255,92,92,.15); color: #ff5c5c; font-size:13px; font-weight:700; }
.mock-stat-icon.s-blue  { background: rgba(74,158,255,.15); }
.mock-stat-label { width: 76px; color: rgba(255,255,255,.55); font-size: 11px; flex-shrink: 0; }
.mock-stat-num {
  position: relative; display: inline-block;
  min-width: 22px; text-align: right; font-size: 12px; font-weight: 700;
  font-variant-numeric: tabular-nums; flex-shrink: 0;
}
.mock-stat-num.s-green { color: #5de870; }
.mock-stat-num.s-red   { color: #ff7a7a; }
.mock-stat-num.s-blue  { color: #74b7ff; }
.mock-stat-track {
  flex: 1; height: 5px; background: rgba(255,255,255,0.07);
  border-radius: 3px; overflow: hidden;
}
.mock-stat-fill {
  height: 100%; width: 0%; border-radius: 3px;
  transition: width 1s cubic-bezier(.4,0,.2,1);
}
.mock-stat-fill.s-green { background: linear-gradient(90deg,#28c840,#6dea7a); }
.mock-stat-fill.s-red   { background: linear-gradient(90deg,#ff5c5c,#ff8585); }
.mock-stat-fill.s-blue  { background: linear-gradient(90deg,#4a9eff,#79bfff); }
.stat-plus {
  position: absolute; right: -14px; top: 0px;
  font-size: 9px; font-weight: 700; pointer-events: none;
  animation: stat-float 0.85s ease-out forwards;
}
@keyframes stat-float {
  0%   { opacity: 0.95; transform: translateY(0); }
  100% { opacity: 0;    transform: translateY(-12px); }
}

/* Payment Modal */
.pay-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.pay-overlay.open { display: flex; }
.pay-modal {
  background: #1a1a26; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px 28px; width: 100%; max-width: 380px;
  position: relative; animation: modal-in 0.25s ease;
}
@keyframes modal-in { from { opacity:0; transform:translateY(16px) scale(0.97); } to { opacity:1; transform:none; } }
.pay-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.06); border: none; color: rgba(255,255,255,0.5);
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.pay-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.pay-logo { font-size: 30px; margin-bottom: 8px; }
.pay-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.pay-plan {
  background: rgba(244,164,75,0.12); border: 1px solid rgba(244,164,75,0.3);
  border-radius: 10px; padding: 10px 14px; color: var(--orange);
  font-weight: 600; font-size: 14px; margin-bottom: 20px;
}
.pay-label { font-size: 12px; color: rgba(255,255,255,0.45); display: block; margin-bottom: 8px; }
.pay-input {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 13px 14px; color: #fff; font-size: 16px;
  outline: none; letter-spacing: 0.03em;
}
.pay-input:focus { border-color: var(--orange); }
.pay-error { color: #ff7a7a; font-size: 12px; margin-top: 6px; display: none; }
.pay-error.show { display: block; }
.pay-submit {
  width: 100%; margin-top: 14px; background: var(--orange); color: #fff;
  border: none; border-radius: 12px; padding: 14px; font-size: 16px;
  font-weight: 700; cursor: pointer; transition: background 0.2s;
}
.pay-submit:hover { background: var(--orange-dark); }
.pay-phone-info {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(244,164,75,0.08);
  border: 1px solid rgba(244,164,75,0.28);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 12px; line-height: 1.55;
  color: rgba(255,255,255,0.6);
}
.pay-phone-info strong { display: block; color: rgba(255,255,255,0.9); font-size: 13px; margin-bottom: 2px; }
.pay-phone-info-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* Cat SVG */
.hero-cat {
  position: absolute; bottom: -20px; right: -30px; width: 180px; pointer-events: none;
}
.cat-svg { width: 100%; height: auto; filter: drop-shadow(0 16px 40px rgba(244,164,75,0.2)); }
.cat-paw { animation: paw-click 1.8s ease-in-out infinite; transform-origin: 130px 138px; }
@keyframes paw-click {
  0%, 40%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-4px); }
  60% { transform: rotate(4deg) translateY(0); }
}
.float-check { animation: float-up 2s ease-in-out infinite; opacity: 0; }
.c1 { animation-delay: 0s; }
.c2 { animation-delay: 0.7s; }
.c3 { animation-delay: 1.4s; }
@keyframes float-up {
  0% { opacity: 0; transform: translateY(0); }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px); }
}

.hero-wave { line-height: 0; margin-top: 20px; }
.hero-wave svg { display: block; width: 100%; }

/* SECTIONS COMMON */
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 48px;
}

/* FEATURES */
.features { background: var(--bg2); padding: 96px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: all 0.3s;
}
.feature-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS */
.how { background: var(--bg); padding: 96px 0; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step {
  flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; text-align: center;
}
.step-num {
  width: 52px; height: 52px; background: var(--orange-glow); border: 2px solid var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--orange); margin: 0 auto 20px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 24px; color: var(--orange); padding: 0 12px; margin-top: 56px; flex-shrink: 0; }

/* PRICING */
.pricing { background: var(--bg2); padding: 96px 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 720px; margin: 0 auto; }
.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 1100px; }
.pricing-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; position: relative;
  display: flex; flex-direction: column;
}
.pricing-card .plan-features { flex: 1; }
.pricing-card.featured { border-color: var(--orange); background: linear-gradient(135deg, var(--card), rgba(244,164,75,0.05)); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #0A0B18; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.plan-badge-gold { background: #FFD700; color: #0A0B18; }
.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.plan-price { font-size: 44px; font-weight: 800; line-height: 1; }
.plan-price span { font-size: 24px; }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-dayrate {
  font-size: 12px; color: var(--orange); font-weight: 600;
  background: var(--orange-glow); border-radius: 6px;
  padding: 5px 10px; margin-bottom: 20px; display: inline-block;
}
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.plan-features li { font-size: 13px; }
.plan-features li.no { opacity: 0.45; }
.plan-btn { width: 100%; text-align: center; }

/* INSTALL */
.install { background: var(--bg); padding: 96px 0; }
.install-inner {
  background: linear-gradient(135deg, var(--card), rgba(244,164,75,0.05));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 64px 48px; text-align: center;
}
.install-cat { font-size: 64px; margin-bottom: 20px; display: block; }
.install-inner h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.install-inner > p { font-size: 17px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.install-steps { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.install-step {
  display: flex; align-items: center; gap: 10px;
  background: var(--card2); border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 18px; font-size: 14px;
}
.install-num {
  width: 26px; height: 26px; background: var(--orange); color: #0A0B18;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.install-step code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
.install-btn { margin-bottom: 20px; }
.install-note { font-size: 13px; color: var(--muted); }
.install-note a { color: var(--orange); text-decoration: none; }

/* FOOTER */
.footer { background: var(--card); border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.footer-links { display: flex; gap: 20px; margin-left: auto; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 1050px) {
  .pricing-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: -8px auto; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .install-steps { flex-direction: column; align-items: stretch; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .install-inner { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { margin-left: 0; }
}
