/* NeutroniX Care — spitex.neutronix.tools */
:root {
  --blue: #1a5fb4;
  --blue-dark: #14487f;
  --red: #e04545;
  --red-dark: #c73434;
  --orange: #f0932b;
  --green: #27ae60;
  --ink: #1f2d3d;
  --muted: #5b6b7c;
  --bg: #f6f8fb;
  --bg-alt: #eef3f9;
  --card: #ffffff;
  --line: #e3e9f0;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(31, 45, 61, 0.08);
  --shadow-lg: 0 16px 48px rgba(31, 45, 61, 0.14);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-size: 1.15rem; font-weight: 500; white-space: nowrap; }
.logo strong { font-weight: 800; color: var(--blue); }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff; font-size: 1rem; font-weight: 700;
}
.main-nav { display: flex; gap: 22px; flex: 1; }
.main-nav a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color .15s; }
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: all .15s;
}
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(224,69,69,0.35); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--blue-dark); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, #ffffff 0%, var(--bg-alt) 60%, #e4eefb 100%);
  padding: 72px 0 88px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem;
  font-weight: 700; color: var(--red); margin-bottom: 14px;
}
.eyebrow.light { color: #ffd9d9; }
.hero h1 { font-size: 3.2rem; line-height: 1.12; font-weight: 800; margin-bottom: 20px; }
.lead { font-size: 1.16rem; color: var(--muted); margin-bottom: 30px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.hero-badges li { font-size: 0.92rem; color: var(--muted); font-weight: 500; }

/* Tablet mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.tablet {
  width: 400px; max-width: 100%;
  background: #1f2d3d; border-radius: 28px; padding: 14px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.tablet-screen { background: #fbfcfe; border-radius: 18px; padding: 20px; }
.ts-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.ts-time { font-size: 1.6rem; font-weight: 800; }
.ts-date { font-size: 0.85rem; color: var(--muted); }
.ts-next-visit {
  display: flex; gap: 12px; align-items: center;
  background: #eaf3ff; border: 1px solid #cfe3fb; border-radius: 14px;
  padding: 14px; margin-bottom: 16px;
}
.ts-avatar { font-size: 2rem; }
.ts-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 600; }
.ts-value { font-weight: 700; font-size: 1.02rem; }
.ts-eta { font-size: 0.88rem; color: var(--green); font-weight: 600; }
.ts-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ts-tile {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 4px; font-size: 1.4rem;
}
.ts-tile span { font-size: 0.7rem; font-weight: 600; color: var(--muted); }
.ts-tile.sos { background: #fdecec; border-color: #f6c9c9; }
.ts-tile.sos span { color: var(--red); }

/* SOS Button */
.sos-button {
  position: absolute; bottom: -22px; right: 8%;
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(145deg, #f5f7fa, #d9e0e8);
  box-shadow: var(--shadow-lg), inset 0 2px 4px rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  animation: float 4s ease-in-out infinite;
}
.sos-inner {
  width: 76px; height: 76px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #f26666, var(--red-dark));
  color: #fff; font-weight: 800; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(199,52,52,0.5);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== Trustbar ===== */
.trustbar { background: var(--blue-dark); color: #fff; padding: 26px 0; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 1rem; }
.trust-item span { font-size: 0.85rem; opacity: 0.75; }

/* ===== Sections ===== */
.section { padding: 84px 0; }
.section.alt { background: var(--bg-alt); }
.section-title { font-size: 2.2rem; font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto 48px; }

/* Cards */
.cards { display: grid; gap: 24px; margin-top: 40px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--card); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card-icon.red { background: #fdecec; }
.card-icon.blue { background: #eaf3ff; }
.card-icon.orange { background: #fef3e2; }
.card-icon.green { background: #e8f8ee; }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 24px; }
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--blue); color: #fff; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(26,95,180,0.35);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-text { order: 0; }
.split-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.split-text p { color: var(--muted); margin-bottom: 18px; }
.checklist { list-style: none; }
.checklist li {
  padding-left: 32px; position: relative; margin-bottom: 12px;
  color: var(--ink); font-size: 0.98rem;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Panel mockups */
.panel-mock {
  background: var(--card); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.pm-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 18px; }
.pm-row {
  display: grid; grid-template-columns: 52px 1fr auto; gap: 12px;
  padding: 13px 12px; border-radius: 12px; margin-bottom: 8px;
  background: var(--bg); font-size: 0.92rem; align-items: center;
}
.pm-row.today { background: #eaf3ff; border: 1px solid #cfe3fb; }
.pm-day { font-weight: 700; color: var(--blue); }
.pm-what { color: var(--ink); }
.pm-when { color: var(--muted); font-weight: 600; white-space: nowrap; }
.pm-when.live { color: var(--green); }

.menu-card {
  display: flex; gap: 14px; align-items: center;
  padding: 14px; border-radius: 12px; background: var(--bg);
  margin-bottom: 10px;
}
.menu-emoji { font-size: 1.8rem; }
.menu-card div:nth-child(2) { flex: 1; display: flex; flex-direction: column; }
.menu-card strong { font-size: 0.95rem; }
.menu-card span { font-size: 0.83rem; color: var(--muted); }
.mini-btn {
  background: var(--blue); color: #fff; border: none; border-radius: 999px;
  padding: 8px 16px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
  font-family: inherit; white-space: nowrap;
}
.mini-btn:hover { background: var(--blue-dark); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 16px; }
.price-card {
  background: var(--card); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border: 2px solid var(--red); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 4px 16px; border-radius: 999px;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.price { font-size: 2.3rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 20px; }
.price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; flex: 1; margin-bottom: 26px; }
.price-card li { padding: 7px 0; font-size: 0.94rem; color: var(--ink); border-bottom: 1px dashed var(--line); }
.price-card li:last-child { border-bottom: none; }
.price-card .btn { text-align: center; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 30px; }

/* B2B banner */
.b2b-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 22px; padding: 48px; color: #fff;
  display: flex; gap: 40px; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.b2b-banner h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.b2b-banner p { opacity: 0.88; max-width: 640px; }
.b2b-banner .btn { flex-shrink: 0; }

/* FAQ */
.faq-item {
  background: var(--card); border-radius: 14px; border: 1px solid var(--line);
  margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px; font-weight: 600; cursor: pointer; list-style: none;
  position: relative; padding-right: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--blue); font-weight: 400; transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--muted); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: var(--card); color: var(--ink);
  width: 100%;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,95,180,0.12);
}
.contact-form .btn { align-self: flex-start; }
.form-note { font-size: 0.9rem; color: var(--green); font-weight: 600; }

/* Footer */
.site-footer { background: #1f2d3d; color: #b9c4d0; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { color: #fff; margin-bottom: 14px; }
.footer-logo strong { color: #7fb2f0; }
.footer-col p { font-size: 0.9rem; }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 0.95rem; }
.footer-col a { display: block; color: #b9c4d0; text-decoration: none; font-size: 0.9rem; padding: 4px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); text-align: center;
  padding: 20px; font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .split.reverse .split-visual { order: 1; }
  .hero h1 { font-size: 2.4rem; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .steps { grid-template-columns: 1fr; }
  .b2b-banner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px 24px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .phone-link { display: none; }
}
@media (max-width: 560px) {
  .cards-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .tablet { transform: none; }
  .sos-button { width: 84px; height: 84px; bottom: -16px; }
  .sos-inner { width: 58px; height: 58px; font-size: 0.95rem; }
}
