/* =================================================
   SinuxMod marketing site — dark navy / teal
   ================================================= */

.sm-page {
  background: #0a1628;
  color: #e6e9ee;
  min-height: 100vh;
  font-family: "Poppins", system-ui, sans-serif;
}
.sm-page * { box-sizing: border-box; }

.sm-container {
  width: min(100% - var(--side), 1240px);
  margin-inline: auto;
}

.sm-section {
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
}
.sm-section-alt {
  background: #0d1d31;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ====== Typography ====== */
.sm-h1 {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 22px 0 22px;
  text-wrap: balance;
}
.sm-h1-accent {
  color: #01A0A6;
  font-style: italic;
  font-family: "Poppins", serif;
  font-weight: 500;
}
.sm-h2 {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 4.2vw, 48px);
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.sm-h2 em {
  font-family: "Poppins", serif;
  font-style: italic;
  font-weight: 500;
  color: #01A0A6;
}
.sm-eyebrow {
  font-family: "Michroma", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #01A0A6;
  margin-bottom: 16px;
}
.sm-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(230,233,238,0.75);
  line-height: 1.65;
  max-width: 56ch;
}
.sm-section-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

/* ====== Pills ====== */
.sm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #6fe7eb;
  background: rgba(1,160,166,0.1);
  border: 1px solid rgba(1,160,166,0.3);
}
.sm-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #01A0A6;
  box-shadow: 0 0 0 4px rgba(1,160,166,0.25);
  animation: livepulse 2s ease-in-out infinite;
}

/* ====== Header / Nav ====== */
.sm-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.sm-header.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.06);
}
.sm-nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
  padding: 0 calc(var(--side) / 2);
}
.sm-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.sm-brand-text {
  font-family: "Michroma", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
}
.sm-nav-links {
  display: flex;
  gap: clamp(14px, 1.5vw, 26px);
  margin-left: auto;
}
.sm-nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.sm-nav-links a:hover { color: #fff; }
@media (max-width: 820px) {
  .sm-nav-links { display: none; }
}

/* ====== Buttons ====== */
.sm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.sm-btn:hover { transform: translateY(-1px); }
.sm-btn-lg { padding: 16px 28px; font-size: 14px; }
.sm-btn-sm { padding: 8px 14px; font-size: 12px; }
.sm-btn-block { width: 100%; justify-content: center; }
.sm-btn-primary {
  background: #01A0A6;
  color: #0a1628;
  box-shadow: 0 6px 24px -8px rgba(1, 160, 166, 0.6);
}
.sm-btn-primary:hover { background: #14babf; }
.sm-btn-outline {
  background: transparent;
  color: #01A0A6;
  border-color: rgba(1,160,166,0.5);
}
.sm-btn-outline:hover { background: rgba(1,160,166,0.08); border-color: #01A0A6; }
.sm-btn-light {
  background: white;
  color: #0a1628;
}
.sm-btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.sm-btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: white; }

/* ====== Hero ====== */
.sm-hero {
  position: relative;
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.sm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(1, 160, 166, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 103, 110, 0.18), transparent 60%),
    linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.4));
  pointer-events: none;
  z-index: 0;
}
.sm-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.sm-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) {
  .sm-hero-grid { grid-template-columns: 1fr; }
}
.sm-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ====== Discord ticket mockup ====== */
.sm-discord-card {
  background: #1e1f22;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  overflow: hidden;
}
.sm-discord-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: #2b2d31;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sm-discord-channel {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sm-channel-icon { color: #a1a8b4; font-weight: 400; }
.sm-discord-status {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(251, 191, 36, 0.18);
  color: #fbbf24;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sm-discord-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 360px;
}
.sm-discord-msg {
  display: flex;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: smFadeUp 0.5s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes smFadeUp { to { opacity: 1; transform: translateY(0); } }
.sm-discord-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #5865f2;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.sm-discord-avatar-bot {
  background: linear-gradient(135deg, #01A0A6, #00676E);
}
.sm-discord-msg-body { flex: 1; min-width: 0; }
.sm-discord-msg-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.sm-discord-author {
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
}
.sm-discord-author-bot { color: #6fe7eb; }
.sm-discord-bot-tag {
  background: #5865f2;
  color: white;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.sm-discord-author-bot + .sm-discord-bot-tag {
  background: #01A0A6;
}
.sm-discord-msg-text {
  font-size: 13.5px;
  color: #dbdee1;
  line-height: 1.5;
}
.sm-discord-msg-text strong { color: #fff; font-weight: 600; }
.sm-discord-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  margin-left: 48px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  align-self: flex-start;
  opacity: 0;
  animation: smFadeUp 0.4s forwards;
}
.sm-typing-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #a1a8b4;
  animation: smTyping 1.2s ease-in-out infinite;
}
.sm-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.sm-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes smTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}
.sm-discord-close {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #4ade80;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  animation: smFadeUp 0.5s forwards;
}

/* ====== Social proof ====== */
.sm-proof-strip {
  padding-block: clamp(28px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}
.sm-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 24px;
}
.sm-proof-stat {
  text-align: center;
  position: relative;
}
.sm-proof-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 18%; height: 64%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 720px) {
  .sm-proof-stat:not(:last-child)::after { display: none; }
}
.sm-proof-num {
  font-family: "Michroma", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  color: #fff;
  letter-spacing: 0.005em;
}
.sm-proof-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ====== Cards / grid ====== */
.sm-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(1, 160, 166, 0.12);
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
  height: 100%;
}
.sm-card:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 160, 166, 0.35);
  background: rgba(1,160,166,0.04);
  box-shadow: 0 20px 40px -20px rgba(1, 160, 166, 0.25);
}
.sm-card-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.sm-card-body {
  font-size: 14px;
  color: rgba(230, 233, 238, 0.65);
  line-height: 1.6;
  margin: 0;
}
.sm-grid-2, .sm-grid-3, .sm-grid-4 {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}
.sm-grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.sm-grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.sm-grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }

.sm-feature-card { display: flex; flex-direction: column; }
.sm-feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(1, 160, 166, 0.12);
  color: #01A0A6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ====== Demo section ====== */
.sm-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 900px) {
  .sm-demo-grid { grid-template-columns: 1fr; }
}
.sm-kb-card {
  background: #fff;
  color: #0f172a;
  border-radius: 14px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.sm-kb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.sm-kb-eyebrow {
  font-family: "Michroma", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #01A0A6;
}
.sm-kb-uses {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(1, 160, 166, 0.1);
  color: #00676E;
  border-radius: 999px;
  font-weight: 600;
}
.sm-kb-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 16px 0 6px;
}
.sm-kb-q {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}
.sm-kb-a {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}
.sm-kb-tags {
  display: flex; gap: 8px;
  margin-top: 16px;
}
.sm-kb-tag {
  padding: 4px 10px;
  font-size: 11px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 999px;
  font-weight: 500;
}
.sm-kb-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ====== Dashboard ====== */
.sm-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow-x: auto;
  width: fit-content;
}
.sm-tab {
  padding: 10px 18px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.sm-tab.active {
  background: #01A0A6;
  color: #0a1628;
}
.sm-tab:hover:not(.active) { color: #fff; }
.sm-dash-window {
  background: #f7f8fb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
}
.sm-dash-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #e2e8f0;
  border-bottom: 1px solid #cbd5e1;
}
.sm-dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.sm-dash-url {
  margin-left: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: #64748b;
}
.sm-dash-body {
  background: white;
  padding: clamp(20px, 3vw, 32px);
  min-height: 420px;
  color: #0f172a;
}

/* KB panel */
.sm-kb-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.sm-kb-search {
  flex: 1;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  color: #0f172a;
}
.sm-kb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.sm-kb-table th, .sm-kb-table td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}
.sm-kb-table th {
  font-size: 10px;
  color: #64748b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #f8fafc;
}
.sm-kb-q-cell { font-weight: 500; color: #0f172a; max-width: 240px; }
.sm-kb-a-cell { color: #475569; max-width: 280px; }
.sm-kb-uses-cell { color: #94a3b8; font-family: "JetBrains Mono", monospace; }
.sm-kb-tag-pill {
  padding: 3px 8px;
  font-size: 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.sm-kb-tag-qa { background: #e0f2fe; color: #0369a1; }
.sm-kb-tag-rule { background: #fef3c7; color: #b45309; }

/* Chat panel */
.sm-chat-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px;
  height: 100%;
}
@media (max-width: 768px) { .sm-chat-panel { grid-template-columns: 1fr; } }
.sm-chat-left {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
}
.sm-chat-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 12px;
}
.sm-chat-thread {
  display: flex; flex-direction: column;
  gap: 10px;
}
.sm-chat-msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 80%;
}
.sm-chat-user {
  background: white;
  border: 1px solid #e2e8f0;
  align-self: flex-start;
  color: #0f172a;
}
.sm-chat-bot {
  background: #01A0A6;
  color: white;
  align-self: flex-end;
}
.sm-chat-bot strong { color: white; font-weight: 600; }
.sm-chat-right {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.sm-chat-teach-eyebrow {
  font-family: "Michroma", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #01A0A6;
  margin-bottom: 12px;
}
.sm-chat-teach-input {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #0f172a;
  background: #f8fafc;
}
.sm-chat-teach-input:focus { outline: none; border-color: #01A0A6; }
.sm-chat-teach-hint {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
  line-height: 1.5;
}

/* Rules panel */
.sm-rules-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sm-rule-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  align-items: center;
}
.sm-rule-icon { font-size: 22px; }
.sm-rule-content { font-size: 13.5px; }
.sm-rule-if, .sm-rule-then {
  display: flex; gap: 10px;
  padding: 4px 0;
  color: #475569;
  align-items: center;
}
.sm-rule-keyword {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  background: rgba(1, 160, 166, 0.1);
  color: #00676E;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.sm-rule-keyword-then {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}
.sm-rule-toggle {
  width: 36px; height: 22px;
  background: #01A0A6;
  border: none;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.sm-rule-toggle-dot {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
}

/* Overview panel */
.sm-overview-panel {}
.sm-overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.sm-overview-stat {
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.sm-overview-stat-num {
  font-family: "Michroma", sans-serif;
  font-size: 24px;
  color: #01A0A6;
  letter-spacing: 0.005em;
}
.sm-overview-stat-label {
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}
.sm-overview-chart {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}
.sm-chart-label {
  font-family: "Michroma", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

/* ====== Steps ====== */
.sm-steps {
  display: flex; flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
}
.sm-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.sm-step:last-child { border-bottom: none; }
.sm-step-num {
  font-family: "Michroma", sans-serif;
  font-size: 32px;
  color: #01A0A6;
  opacity: 0.5;
  letter-spacing: 0.02em;
}
.sm-step-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.sm-step-desc {
  color: rgba(230,233,238,0.65);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}

/* ====== Pricing ====== */
.sm-pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(1, 160, 166, 0.25);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 56px);
}
.sm-pricing-display { text-align: center; margin-bottom: 36px; }
.sm-pricing-amount-row {
  display: flex; justify-content: center;
  align-items: baseline;
  gap: 6px;
}
.sm-pricing-currency {
  font-family: "Michroma", sans-serif;
  font-size: 24px;
  color: rgba(255,255,255,0.6);
}
.sm-pricing-amount {
  font-family: "Michroma", sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1;
}
.sm-pricing-period {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}
.sm-pricing-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}
.sm-slider-wrap { padding: 0 12px; }
.sm-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  outline: none;
}
.sm-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  background: #01A0A6;
  border: 4px solid #0a1628;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(1, 160, 166, 0.15);
}
.sm-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  background: #01A0A6;
  border: 4px solid #0a1628;
  border-radius: 50%;
  cursor: pointer;
}
.sm-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 4px;
}
.sm-slider-tick {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
}
.sm-slider-tick:hover { color: #fff; }
.sm-slider-tick.active { color: #01A0A6; font-weight: 600; }

.sm-pricing-compare {
  margin-top: 32px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.sm-pricing-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.sm-pricing-compare-row strong { color: #fff; font-weight: 600; font-size: 16px; }
.sm-pricing-compare-highlight {
  color: #01A0A6;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sm-pricing-compare-highlight strong { color: #01A0A6; }
.sm-pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ====== FAQ ====== */
.sm-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .sm-faq-grid { grid-template-columns: 1fr; }
}
.sm-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sm-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 500;
  color: #fff;
}
.sm-faq-plus {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #01A0A6;
  transition: transform .25s, border-color .25s;
  flex-shrink: 0;
}
.sm-faq-item.open .sm-faq-plus {
  transform: rotate(45deg);
  border-color: #01A0A6;
}
.sm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.2,.7,.2,1);
}
.sm-faq-item.open .sm-faq-a { max-height: 400px; }
.sm-faq-a-inner {
  padding-bottom: 20px;
  font-size: 14.5px;
  color: rgba(230,233,238,0.65);
  line-height: 1.7;
}

/* ====== Final CTA ====== */
.sm-final-cta { padding-block: clamp(60px, 8vw, 100px); }
.sm-final-card {
  background: linear-gradient(135deg, #00676E 0%, #01A0A6 60%, #14babf 100%);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.sm-final-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.sm-final-card > * { position: relative; z-index: 1; }

/* ====== Footer ====== */
.sm-footer {
  background: #050a14;
  padding: clamp(48px, 7vw, 72px) 0 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.sm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 768px) {
  .sm-footer-grid { grid-template-columns: 1fr 1fr; }
}
.sm-footer-h {
  font-family: "Michroma", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.sm-footer-links { display: flex; flex-direction: column; gap: 10px; }
.sm-footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s;
}
.sm-footer-links a:hover { color: #fff; }
.sm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}
