:root {
  --bg: #f3f8fc;
  --bg-deep: #e6f1f8;
  --ink: #16324a;
  --ink-soft: #2c4a63;
  --muted: #5b7388;
  --line: rgba(0, 102, 171, 0.14);
  --card: #ffffff;
  --card-2: #eef6fb;
  --lime: #0066ab;
  --lime-deep: #055894;
  --accent: #0066ab;
  --accent-deep: #055894;
  --sky: #33b5ff;
  --gold: #fcbf49;
  --mint: #33b5ff;
  --peach: #7ec8f0;
  --violet: #33b5ff;
  --shadow: 0 24px 60px rgba(5, 88, 148, 0.12);
  --radius: 28px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
}

.skip:focus {
  top: 16px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: drift 18s var(--ease) infinite alternate;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(51, 181, 255, 0.45), transparent 68%);
  top: -120px;
  right: 8%;
}

.orb-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 102, 171, 0.22), transparent 70%);
  bottom: -80px;
  left: -40px;
  animation-delay: -6s;
}

.orb-c {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(51, 181, 255, 0.28), transparent 70%);
  top: 40%;
  right: -80px;
  animation-delay: -10s;
}

@keyframes drift {
  to {
    transform: translate3d(24px, 18px, 0) scale(1.08);
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(243, 248, 252, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 248, 252, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 102, 171, 0.16);
}

.logo-mark img,
.logo-mark svg {
  width: 38px;
  height: 38px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .btn-lime {
  flex-shrink: 0;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  box-shadow: 0 12px 30px rgba(20, 17, 15, 0.22);
}

.btn-lime {
  background: var(--accent);
  color: #fff;
}

.btn-lime:hover {
  background: var(--accent-deep);
  box-shadow: 0 14px 30px rgba(0, 102, 171, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: #fff;
}

.btn-lg {
  padding: 16px 26px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.h1 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin-bottom: 20px;
}

.h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #0066ab 10%, #33b5ff 55%, #055894 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-copy p {
  font-size: 17.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-copy p:last-child { margin-bottom: 0; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.trust-row strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo {
  width: min(100%, 480px);
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  user-select: none;
}

.section {
  padding: 88px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px 24px;
  margin-bottom: 36px;
}

.section-head .h2,
.section-head .sub {
  min-width: 0;
}

.h2 {
  font-family: var(--display);
  font-size: clamp(22px, 3.4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  max-width: 720px;
  overflow-wrap: break-word;
}

.sub {
  color: var(--muted);
  max-width: 360px;
  overflow-wrap: break-word;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(20, 17, 15, 0.05);
  min-height: 260px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 22px;
}

.step h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 14px 0 8px;
}

.step p {
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-soft);
  transition: 0.3s var(--ease);
}

.filter:hover,
.filter.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.templates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tpl {
  background: var(--card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}

.tpl:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.tpl-preview {
  height: 268px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #d7e6f2;
}

.tpl-live {
  width: 100%;
  height: 100%;
}

.mini-cv {
  height: 100%;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 17, 15, 0.08);
  overflow: hidden;
  display: grid;
}

.mini-cv.photo { grid-template-columns: 70px 1fr; }
.mini-cv .left { padding: 12px 8px; }
.mini-cv .right { padding: 14px 10px; }
.mini-cv .dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.t-standard .left { background: #0066ab; }
.t-modern .left { background: #055894; }
.t-stylish .left { background: #1a7fc2; }
.t-fresh .left { background: #33b5ff; }
.t-prestige .left { background: #0b3d5c; }
.t-exclusive .left { background: #2b6cb0; }
.t-navy .left { background: #1e3a5f; }
.t-steel .left { background: #4a7fa0; }
.t-strict { background: linear-gradient(#fff, #f4f4f4); }
.t-paper { background: linear-gradient(#fff, #eaf3fa); }
.t-noexp .right { padding-top: 22px; }

.text-block {
  color: var(--ink-soft);
  max-width: 820px;
  margin: 0 0 22px;
  font-size: 16.5px;
}

.text-block.wide { max-width: none; }

.tpl-outro {
  margin-top: 28px;
  padding: 24px 26px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.tpl-outro ul {
  margin: 8px 0 0 20px;
  color: var(--ink-soft);
}

.tpl-outro li { margin-bottom: 6px; }

#examples ol {
  margin: 0 0 0 22px;
  color: var(--ink-soft);
}

#examples li { margin-bottom: 8px; }

.tpl-meta {
  padding: 16px 16px 18px;
}

.tpl-meta h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.tpl-meta p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.tpl-meta .btn {
  width: 100%;
}

.tpl-dl {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
}

.tpl-dl a {
  flex: 1 1 calc(50% - 4px);
  width: 50%;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 6px;
  border: 1px solid rgba(0, 102, 171, 0.28);
  border-radius: 999px;
  background: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #7a93a6;
  text-decoration: none;
  text-align: center;
}

.tpl-dl a:hover {
  color: #055894;
  border-color: #055894;
}

.bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.panel {
  border-radius: 32px;
  padding: 36px;
  background: var(--ink);
  color: #f6f3ea;
  position: relative;
  overflow: hidden;
}

.panel h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
  max-width: 520px;
  margin: 12px 0 16px;
}

.panel p {
  color: rgba(246, 243, 234, 0.72);
  max-width: 480px;
  margin-bottom: 24px;
}

.panel .glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(51, 181, 255, 0.45), transparent 70%);
}

.side-panels {
  display: grid;
  gap: 18px;
}

.mini-panel {
  background: var(--card);
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(20, 17, 15, 0.05);
  transition: transform 0.4s var(--ease);
}

.mini-panel:hover {
  transform: translateY(-4px);
}

.mini-panel h3 {
  margin: 10px 0 6px;
  letter-spacing: -0.03em;
}

.mini-panel p {
  color: var(--muted);
  font-size: 14px;
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-top: 28px;
}

.marquee {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: slide 28s linear infinite;
}

.tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes slide {
  to { transform: translateX(-50%); }
}

.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
  border: 1px solid rgba(20, 17, 15, 0.05);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  background: #fff;
}

.why-card h3 {
  margin: 16px 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
}

.morph {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  position: relative;
}

.morph svg {
  position: absolute;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
}

.morph .to {
  opacity: 0;
  transform: rotate(-28deg) scale(0.55);
}

.step:hover .morph .from,
.why-card:hover .morph .from,
.mini-panel:hover .morph .from,
.btn:hover .morph .from,
.header.is-open .menu-toggle .from,
.faq-item.is-open .morph .from {
  opacity: 0;
  transform: rotate(28deg) scale(0.55);
}

.step:hover .morph .to,
.why-card:hover .morph .to,
.mini-panel:hover .morph .to,
.btn:hover .morph .to,
.header.is-open .menu-toggle .to,
.faq-item.is-open .morph .to {
  opacity: 1;
  transform: none;
}

.guide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.expert {
  background: #fff;
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.expert-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.expert-photo {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 18%;
  background: #d6eeff;
  flex-shrink: 0;
}

.guide-list {
  display: grid;
  gap: 12px;
}

.guide-item {
  background: var(--card);
  border-radius: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 17, 15, 0.05);
}

.guide-item strong {
  display: block;
  margin-bottom: 4px;
}

.guide-item span {
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.05);
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
  color: var(--muted);
  padding: 0 20px;
}

.faq-item.is-open .answer {
  max-height: 220px;
  padding: 0 20px 18px;
}

.cta {
  background: linear-gradient(135deg, #055894, #0066ab);
  color: #fff;
  border-radius: 40px;
  padding: 56px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.04em;
  max-width: 560px;
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
}

.cta .orb {
  opacity: 0.7;
}

.footer {
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer h4 {
  margin-bottom: 12px;
}

.footer a,
.footer p {
  color: var(--muted);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.footer a:hover {
  color: var(--ink);
}

.copy {
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.8s var(--ease) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.24s; }
.d4 { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .bento,
  .guide,
  .cta,
  .footer-grid,
  .spots {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head .h2,
  .section-head .sub {
    max-width: none;
    width: 100%;
  }

  .steps,
  .templates,
  .why {
    grid-template-columns: 1fr 1fr;
  }

  .nav,
  .header-actions .btn-ghost {
    display: none;
  }

  .header.is-open .nav {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: #fff;
    border-radius: 20px;
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-visual {
    display: none;
  }

  .cta {
    padding: 36px 24px;
  }
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.crumbs a:hover { color: var(--accent); }
.crumbs span { opacity: 0.45; }

.spots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -12px;
  margin-bottom: 8px;
}

.spot {
  background: var(--card);
  border-radius: 24px;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.spot .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.spot h2,
.spot h3 {
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-family: var(--font);
}

.spot p {
  color: var(--muted);
  font-size: 14px;
}

.spot a {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.spot a:hover { color: var(--lime-deep); }

.article {
  background: #fff;
  border-radius: 32px;
  padding: 40px 44px 48px;
  border: 1px solid var(--line);
  overflow-x: hidden;
  min-width: 0;
}

.article .h2 {
  max-width: none;
  margin: 36px 0 14px;
}

.article .h2:first-child { margin-top: 0; }

.article h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 28px 0 10px;
}

.article p {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.article ol,
.article ul {
  margin: 8px 0 18px 22px;
  color: var(--ink-soft);
}

.article li {
  margin-bottom: 8px;
}

.article li::marker {
  color: var(--accent);
  font-weight: 800;
}

.toc {
  background: var(--bg);
  border-radius: 20px;
  padding: 18px 22px;
  margin-bottom: 28px;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
}

.toc ol {
  margin: 0 0 0 18px;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 24px;
}

.compare {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  font-size: 14px;
}

.compare th,
.compare td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.compare th {
  background: #e8f4fc;
  color: var(--accent-deep);
}

.callout {
  background: linear-gradient(135deg, #e8f4fc, #fff);
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  padding: 16px 18px;
  margin: 18px 0 22px;
}

.callout strong { color: var(--accent-deep); }

.comments {
  display: grid;
  gap: 12px;
}

.comment {
  background: var(--card);
  border-radius: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
}

.comment header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}

.comment b { color: var(--ink); font-size: 15px; }
.comment p { color: var(--ink-soft); font-size: 15px; }

@media (max-width: 980px) {
  .spots {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 24px 18px 32px;
  }
}

@media (max-width: 640px) {
  .steps,
  .templates,
  .why {
    grid-template-columns: 1fr;
  }

  .header-inner { min-height: 64px; }
  .hero { padding: 28px 0 24px; }
  .hero-visual { display: none; }
  .h1 { font-size: 28px; }
  .section { padding: 48px 0; }
  .filters { overflow-x: auto; flex-wrap: nowrap; }
  .tpl-preview { height: 220px; }
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .tpl-meta .btn { width: 100%; }
}

@media (max-width: 480px) {
  .compare thead { display: none; }
  .compare,
  .compare tbody,
  .compare tr,
  .compare td {
    display: block;
    width: 100%;
  }
  .compare tr {
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  .compare td {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 12px;
  }
  .compare td:last-child { border-bottom: 0; }
  .compare td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-deep);
    margin-bottom: 4px;
  }
  .table-scroll { overflow: visible; }
}

@media (max-width: 400px) {
  .header-actions .btn-lime {
    padding: 8px 11px;
    font-size: 12px;
  }
  .logo { font-size: 15px; gap: 6px; }
  .logo-mark,
  .logo-mark img,
  .logo-mark svg {
    width: 30px;
    height: 30px;
  }
}
