/* Omzeta landing page.
   Color tokens mirror OmzetaApps/src/theme/colors.js — keep both in sync. */

:root {
  --primary: #255fb9;
  --primary-light: #c5d8fc;
  --primary-dark: #063680;
  --brand-dark: #071e27;
  --brand-muted: #5b403d;
  --brand-subtle: #8f6f6c;
  --surface: #ffffff;
  --surface-subtle: #fafafa;

  /* Text on the blue hero. --primary-light only reaches 4.28:1 on --primary,
     below the 4.5:1 WCAG AA floor for body text — this tint reaches 4.98:1. */
  --on-primary-soft: #dbe7fd;

  /* Small print on --surface-subtle. --brand-subtle only reaches 4.32:1 there,
     below the 4.5:1 WCAG AA floor — this shade reaches 5.09:1. */
  --brand-subtle-text: #856360;

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-card: 0 2px 6px rgba(7, 30, 39, 0.08);
  --shadow-lift: 0 12px 32px rgba(7, 30, 39, 0.14);

  --max-width: 1120px;
  --gutter: 20px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-dark);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.25; margin: 0 0 12px; color: var(--brand-dark); }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.075rem; }
p { margin: 0 0 12px; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 760px; }
.center { text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(126, 170, 235, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.header-nav { min-width: 0; flex: 1; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brand-dark);
}
.brand:hover { text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: var(--radius-md); }

/* Below 820px the links do not fit beside the brand, so the list scrolls
   sideways instead of disappearing — a no-JS page has no hamburger to fall
   back to. */
.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list li { flex: none; }
.nav-list a {
  color: var(--brand-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
  white-space: nowrap;
}
.nav-list a:hover { color: var(--primary); }

@media (min-width: 820px) {
  .header-nav { flex: 1; }
  .nav-list { gap: 24px; justify-content: center; overflow-x: visible; }
}

/* ---------- Call to action ---------- */

/* Official Google Play badge — never recolor, crop, or redraw it. */
.play-badge {
  display: inline-block;
  line-height: 0;
  transition: transform 0.15s ease;
}
.play-badge:hover { transform: translateY(-1px); }
.play-badge img { height: 56px; width: auto; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 40px 0 40px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.hero-copy { max-width: 560px; }
.hero h1 { color: #fff; }
.hero .lead { font-size: 1.075rem; color: var(--on-primary-soft); margin-bottom: 24px; }

.tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: #fff;
  margin: 0 0 14px;
}
.tagline strong {
  display: inline-block;
  font-weight: 700;
  border-bottom: 3px solid var(--primary-light);
  padding-bottom: 2px;
}

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.note { font-size: 0.875rem; color: var(--on-primary-soft); margin-top: 16px; }

/* The whole screenshot shows — no crop — so its height follows the 1080x2300
   source. Width is capped by the viewport height too, or a short laptop window
   would push the fold past the call to action. The phone body is drawn in CSS
   (bezel + earpiece) instead of a frame image, so the page keeps its
   zero-extra-request budget. */
.hero-shot {
  width: min(280px, 72vw, calc((100vh - 200px) * 0.49));
  flex: none;
  position: relative;
  padding: 14px 9px 10px;
  border-radius: 36px;
  background: linear-gradient(150deg, #33445a 0%, #16202e 45%, #0a121c 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    var(--shadow-lift);
}
/* Earpiece slot on the top bezel. */
.hero-shot::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.hero-shot img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  background: var(--surface);
}

@media (min-width: 900px) {
  .hero { padding: 48px 0; }
  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
  }
  .hero-shot { width: min(310px, calc((100vh - 190px) * 0.49)); }
}

/* ---------- Sections ---------- */

.section { padding: 56px 0; }
.section-alt { background: var(--surface-subtle); }
.section-sub {
  color: var(--brand-muted);
  font-size: 1.02rem;
  margin-bottom: 28px;
  max-width: 640px;
}
.center .section-sub { margin-left: auto; margin-right: auto; }

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .features, .steps { grid-template-columns: repeat(3, 1fr); }
}

/* On phones nine stacked feature cards make the page scroll for ages, so they
   pair up into a compact two-column grid instead. */
@media (max-width: 639px) {
  #fitur, #tampilan { padding: 40px 0; }
  #fitur .section-sub, #tampilan .section-sub { margin-bottom: 20px; }

  .features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .features .card { padding: 14px; border-radius: var(--radius-lg); }
  .features .card h3 { font-size: 0.95rem; margin-bottom: 4px; }
  .features .card p { font-size: 0.82rem; line-height: 1.45; }
}

.card {
  background: var(--surface);
  border: 1px solid rgba(126, 170, 235, 0.35);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.card p { color: var(--brand-muted); margin: 0; font-size: 0.95rem; }
.card h3 { margin-bottom: 6px; }

.steps { counter-reset: step; }
.steps .card { position: relative; padding-top: 24px; }
.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- Screenshots ---------- */

.shots { gap: 24px; }
@media (min-width: 960px) {
  .shots { grid-template-columns: repeat(3, 1fr); }
}
.shots figure { margin: 0; text-align: center; }
.shots img {
  width: min(260px, 100%);
  margin: 0 auto 12px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(126, 170, 235, 0.5);
  box-shadow: var(--shadow-lift);
}
.shots figcaption { color: var(--brand-muted); font-size: 0.9rem; }

/* Three full-height phone screenshots stacked are ~1800px of scrolling on a
   phone, so below 640px they become a swipeable snap carousel one screen tall.
   tabindex on the container keeps the scroll region reachable by keyboard. */
@media (max-width: 639px) {
  .shots {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(var(--gutter) * -1);
    padding: 4px var(--gutter) 8px;
  }
  .shots::-webkit-scrollbar { display: none; }
  .shots figure { flex: 0 0 62%; scroll-snap-align: center; }
  .shots img { width: 100%; margin-bottom: 8px; }
  .shots figcaption { font-size: 0.82rem; }
}

.swipe-hint {
  display: none;
  color: var(--brand-subtle-text);
  font-size: 0.82rem;
  margin: 10px 0 0;
  text-align: center;
}
@media (max-width: 639px) {
  .swipe-hint { display: block; }
}

/* ---------- FAQ ---------- */

details {
  border-bottom: 1px solid rgba(126, 170, 235, 0.35);
  padding: 14px 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  padding-right: 28px;
  position: relative;
  min-height: 28px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -2px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}
details[open] summary::after { content: "–"; }
details p { color: var(--brand-muted); margin: 10px 0 0; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brand-dark);
  color: #fff;
  padding: 40px 0 24px;
}
.site-footer .brand { color: #fff; }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 720px) {
  .footer-inner { flex-direction: row; }
}
.footer-note { color: var(--primary-light); font-size: 1rem; margin-top: 10px; max-width: 320px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--primary-light); font-size: 0.94rem; }
.footer-links a:hover { color: #fff; }
.copyright {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(197, 216, 252, 0.22);
  color: rgba(197, 216, 252, 0.75);
  font-size: 0.82rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .play-badge { transition: none; }
  .play-badge:hover { transform: none; }
}

/* ---------- Hero extras ---------- */

.hero-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--on-primary-soft);
  font-size: 0.95rem;
}
/* Inline check drawn in CSS so the page keeps its zero-request budget. */
.hero-points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 6px;
  height: 11px;
  border: solid var(--primary-light);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* ---------- Feature cards ---------- */

.feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.card-highlight {
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(37, 95, 185, 0.16);
}
.card-highlight .feat-icon { background: var(--primary); color: #fff; }

@media (max-width: 639px) {
  .feat-icon { width: 30px; height: 30px; margin-bottom: 6px; }
  .feat-icon svg { width: 18px; height: 18px; }
}

/* ---------- Scan struk (flagship section) ---------- */

.section-scan {
  background: linear-gradient(180deg, #eef4fe 0%, var(--surface) 100%);
  border-top: 1px solid rgba(126, 170, 235, 0.35);
}
/* Photo → app: two panels with an arrow that turns downward when they stack. */
.scan-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 40px;
}
.scan-flow-item { margin: 0; text-align: center; max-width: 260px; flex: 1 1 220px; }
.scan-flow-item img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(126, 170, 235, 0.5);
  box-shadow: var(--shadow-lift);
  background: #fff;
}
.scan-flow-item figcaption {
  margin-top: 10px;
  color: var(--brand-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.scan-arrow {
  flex: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
}
@media (max-width: 520px) {
  .scan-arrow { transform: rotate(90deg); width: 100%; }
}

.scan-how-title { font-size: 1.15rem; margin-bottom: 16px; }

.scan-step { display: flex; flex-direction: column; }
.scan-step h4 { margin: 0 0 6px; font-size: 1.02rem; line-height: 1.3; }
.scan-step p { color: var(--brand-muted); font-size: 0.95rem; margin: 0 0 14px; }
.scan-step img {
  margin-top: auto;
  width: 100%;
  max-width: 220px;
  align-self: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(126, 170, 235, 0.5);
  box-shadow: var(--shadow-card);
}
@media (min-width: 960px) {
  .scan-steps { grid-template-columns: repeat(3, 1fr); }
}

.scan-note {
  margin: 24px 0 0;
  color: var(--brand-muted);
  font-size: 0.95rem;
  max-width: 640px;
}

/* Five phone screenshots need a wider grid than the old three. */
@media (min-width: 960px) {
  .shots { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .shots img { width: 100%; }
}

/* ---------------------------------------------------------------------------
   Prose — explanatory copy that carries the informational search intent
   ("apa itu aplikasi kasir"). Narrower measure than .section-sub because these
   are full paragraphs, not one-line subtitles.
   --------------------------------------------------------------------------- */
.prose { max-width: 680px; }
.prose p {
  color: var(--brand-muted);
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.65;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--brand-dark); }

/* ---------------------------------------------------------------------------
   Comparison table. Scrolls inside its own container on narrow screens so the
   page body never scrolls sideways.
   --------------------------------------------------------------------------- */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(126, 170, 235, 0.35);
}
.compare {
  border-collapse: collapse;
  width: 100%;
  min-width: 520px;
  background: var(--surface);
  font-size: 0.95rem;
}
.compare th,
.compare td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(126, 170, 235, 0.25);
  vertical-align: top;
}
.compare thead th {
  background: var(--surface-subtle);
  color: var(--brand-dark);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.compare tbody th {
  font-weight: 600;
  color: var(--brand-dark);
  width: 34%;
}
.compare td { color: var(--brand-muted); }
.compare tr:last-child th,
.compare tr:last-child td { border-bottom: 0; }
.compare .yes { color: var(--primary-dark); font-weight: 600; }

/* ---------------------------------------------------------------------------
   Pricing. One plan, three billing periods — so these are period cards, not
   tiers. The middle card is marked as the best value rather than "popular",
   which would be a claim we cannot back with data yet.
   --------------------------------------------------------------------------- */
.price-grid { margin-top: 8px; }
.price-card { display: flex; flex-direction: column; text-align: left; }
.price-card.is-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lift);
}
.price-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.15;
  margin: 0;
}
.price-unit { font-size: 0.95rem; font-weight: 500; color: var(--brand-muted); }
.price-was {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--brand-subtle-text);
}
.price-was s { margin-right: 6px; }
.price-save { color: var(--primary-dark); font-weight: 600; }
.price-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: var(--brand-muted);
}
.price-badge {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.price-includes {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  max-width: 640px;
}
.price-includes li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--brand-muted);
  font-size: 0.95rem;
  text-align: left;
}
.price-includes li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 6px;
  height: 11px;
  border: solid var(--primary);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.center .price-includes { margin-left: auto; margin-right: auto; }
@media (min-width: 720px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Visible to screen readers only — used for table captions that would be
   redundant on screen but give assistive tech the table's purpose. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Trial + expiry terms, sitting between the price cards and the store badge. */
.price-terms { margin-top: 24px; }

/* ---------------------------------------------------------------------------
   Blog index. Cards carry a date, a linked title, and one line of context —
   enough to choose from, without pretending to be the article.
   --------------------------------------------------------------------------- */
.posts { margin-top: 8px; }
.post-card { display: flex; flex-direction: column; }
.post-date {
  margin: 0 0 6px;
  font-size: 0.85rem;
  color: var(--brand-subtle-text);
}
.post-title { font-size: 1.15rem; margin: 0 0 8px; letter-spacing: 0; }
.post-title a { color: var(--brand-dark); text-decoration: none; }
.post-title a:hover,
.post-title a:focus-visible { color: var(--primary-dark); text-decoration: underline; }
.post-excerpt { color: var(--brand-muted); font-size: 0.95rem; margin: 0; }
@media (min-width: 720px) {
  .posts { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .posts { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------------------------------------
   Long-form article body. Everything here is scoped to .article so the marketing
   pages keep their tighter rhythm.
   --------------------------------------------------------------------------- */
.article { max-width: 720px; }
.article p,
.article li { color: var(--brand-muted); line-height: 1.7; }
.article p { margin: 0 0 16px; font-size: 1.02rem; }
.article h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
}
.article h3 { margin: 26px 0 8px; font-size: 1.1rem; }
.article > :first-child { margin-top: 0; }
.article strong { color: var(--brand-dark); }
.article ul,
.article ol { margin: 0 0 16px; padding-left: 22px; }
.article li { margin-bottom: 8px; font-size: 1.02rem; }
.article a { color: var(--primary-dark); }

.article-meta {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--brand-subtle-text);
}

/* Worked examples — the numbers a reader can follow along with on paper. */
.example {
  background: var(--surface-subtle);
  border: 1px solid rgba(126, 170, 235, 0.35);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  margin: 0 0 20px;
}
.example p:last-child,
.example table { margin-bottom: 0; }
.example-title {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.95rem;
  margin: 0 0 10px;
}

/* Breadcrumb trail above the article title. */
.crumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  font-size: 0.88rem;
  color: var(--brand-subtle-text);
}
.crumbs a { color: var(--brand-subtle-text); }
.crumbs li + li::before { content: "›"; margin-right: 6px; }

/* Closing call to action at the foot of an article. */
.article-cta {
  margin-top: 32px;
  padding: 20px;
  background: var(--surface-subtle);
  border: 1px solid rgba(126, 170, 235, 0.35);
  border-radius: var(--radius-xl);
}
.article-cta h2 { margin-top: 0; font-size: 1.2rem; }
.article-cta p { margin-bottom: 12px; }

/* A second heading inside one example block needs air above it. */
.example p + .example-title { margin-top: 14px; }

/* Card headings that are links — the guide grid on the home page. */
.card h3 a { color: var(--brand-dark); text-decoration: none; }
.card h3 a:hover,
.card h3 a:focus-visible { color: var(--primary-dark); text-decoration: underline; }

/* ---------------------------------------------------------------------------
   404. Large enough to say clearly what happened, quiet enough not to shout at
   someone who already hit a dead end.
   --------------------------------------------------------------------------- */
.error-code {
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary-light);
  margin: 0 0 4px;
}
.error-links { margin: 8px 0 28px; text-align: left; }
.error-links h2 { font-size: 1.05rem; margin: 0 0 6px; letter-spacing: 0; }
.error-links h2 a { color: var(--brand-dark); text-decoration: none; }
.error-links h2 a:hover,
.error-links h2 a:focus-visible { color: var(--primary-dark); text-decoration: underline; }

/* ---------------------------------------------------------------------------
   Pain points. Four problems the reader recognises before any feature is
   mentioned — so they read as symptoms, not as a feature list in disguise.
   --------------------------------------------------------------------------- */
.pains { margin: 4px 0 28px; }
.pain {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--surface-subtle);
  border: 1px solid rgba(126, 170, 235, 0.3);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-lg);
}
.pain p { margin: 0; color: var(--brand-muted); font-size: 0.95rem; line-height: 1.55; }
.pain strong { color: var(--brand-dark); }
.pain-mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ---------------------------------------------------------------------------
   Comparison table — the Omzeta column is tinted end to end so the eye can
   follow one column down instead of re-reading three every row.
   --------------------------------------------------------------------------- */
.compare .col-omzeta { background: rgba(197, 216, 252, 0.32); }
.compare thead th.col-omzeta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.compare tbody td.col-omzeta { font-weight: 600; color: var(--primary-dark); }
.compare tbody tr:last-child .col-omzeta {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.compare tbody tr:hover td:not(.col-omzeta),
.compare tbody tr:hover th { background: var(--surface-subtle); }

/* ---------------------------------------------------------------------------
   Pricing cards.
   --------------------------------------------------------------------------- */
.price-card {
  position: relative;
  padding-top: 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.price-card.is-featured {
  border-width: 2px;
  background: linear-gradient(180deg, rgba(197, 216, 252, 0.35) 0%, var(--surface) 55%);
}
.price-badge {
  position: absolute;
  top: -11px;
  left: 20px;
  margin: 0;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.price-amount { letter-spacing: -0.02em; }
.price-card .price-amount { margin-top: 2px; }
.price-was s { color: var(--brand-subtle-text); }
.price-save {
  display: inline-block;
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.82rem;
}
.price-note {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(126, 170, 235, 0.3);
}

/* ---------------------------------------------------------------------------
   What every plan includes.
   --------------------------------------------------------------------------- */
.includes-title {
  margin: 32px 0 14px;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.05rem;
}
.includes { text-align: left; }
.include {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--surface);
  border: 1px solid rgba(126, 170, 235, 0.35);
  border-radius: var(--radius-lg);
}
.include-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
}
.include-text { display: block; font-size: 0.9rem; color: var(--brand-muted); line-height: 1.45; }
.include-text strong { display: block; color: var(--brand-dark); font-size: 0.98rem; margin-bottom: 2px; }

@media (min-width: 960px) {
  .includes { grid-template-columns: repeat(3, 1fr); }
}
