:root {
  --bg: #f4f2ea;
  --bg-deep: #ece9de;
  --surface: #fffdf7;
  --surface-soft: #f7fbf9;
  --text: #182224;
  --muted: #536166;
  --brand: #0f403b;
  --brand-2: #1b7168;
  --brand-soft: #d8efe9;
  --accent: #f6824d;
  --line: #d4dfda;
  --line-strong: #b9cbc5;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 12px 36px rgba(14, 53, 48, 0.1);
  --shadow-lift: 0 20px 42px rgba(15, 64, 59, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.58;
  background:
    radial-gradient(860px 460px at 8% -12%, #fff4c8 0, transparent 56%),
    radial-gradient(620px 320px at 90% -8%, #d9f5f1 0, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body::before {
  content: none;
}

a {
  color: inherit;
}

.wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 242, 234, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 64, 59, 0.1);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.2px;
}

.fakt-sticker {
  display: inline-block;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: #f5e130;
  color: #1a1a1a;
  padding: 2px 6px 3px;
  border-radius: 4px;
  border-bottom: 2px solid rgba(200, 165, 0, 0.55);
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transform: rotate(-4deg);
  vertical-align: top;
  margin-left: 5px;
  margin-top: 3px;
  line-height: 1.5;
  user-select: none;
}

h1 .fakt-sticker {
  font-size: 0.7rem;
  margin-top: 6px;
  margin-left: 8px;
  transform: rotate(-5deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 780;
  text-decoration: none;
  color: #f2fffc;
  background: linear-gradient(120deg, var(--brand-2), var(--brand));
  box-shadow: 0 10px 24px rgba(15, 64, 59, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 30px rgba(15, 64, 59, 0.27);
  filter: saturate(110%);
}

.button.subtle {
  color: var(--brand);
  background: linear-gradient(180deg, #ecf8f5, #d7eee8);
  box-shadow: 0 6px 16px rgba(15, 64, 59, 0.08);
}

.button:focus-visible,
.copy-btn:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(246, 130, 77, 0.45);
  outline-offset: 3px;
}

.hero {
  padding: 3.4rem 0 1.4rem;
}

.hero-grid {
  display: block;
}

.hero-grid > div {
  position: relative;
  border: 1px solid rgba(15, 64, 59, 0.13);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0, rgba(246, 130, 77, 0.25), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f7fbf9 100%);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 8px 22px rgba(14, 53, 48, 0.08);
}

.kicker {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  font-weight: 800;
  color: var(--brand);
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.5vw, 3.35rem);
}

.lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  max-width: 52ch;
}

.hero-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
}

.hero-points {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cde0da;
  border-radius: 999px;
  background: #f4fbf8;
  color: #2a4a4f;
  font-weight: 650;
  font-size: 0.8rem;
  padding: 0.26rem 0.62rem;
}

.sum {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.sum strong {
  color: var(--brand);
  font-size: 1.08rem;
}

.offers {
  padding: 0.8rem 0 2.4rem;
}

.section-head {
  margin-bottom: 1.15rem;
}

.section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.28rem);
}

.section-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  grid-column: span 12;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #fcfdfa 100%);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.9rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: reveal 560ms cubic-bezier(.22,.61,.36,1) both;
}

.card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -78px;
  top: -98px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(27, 113, 104, 0.16), transparent 66%);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
}

.card:nth-child(2) {
  animation-delay: 70ms;
}

.card:nth-child(3) {
  animation-delay: 140ms;
}

.card:nth-child(4) {
  animation-delay: 210ms;
}

.card:nth-child(5) {
  animation-delay: 280ms;
}

@media (min-width: 760px) {
  .card {
    grid-column: span 6;
  }
}

@media (min-width: 1060px) {
  .card {
    grid-column: span 4;
  }
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.9rem;
}

.card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.badge {
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  background: #fff3d8;
  border: 1px solid #f3d18e;
  color: #865400;
  font-size: 0.76rem;
  font-weight: 800;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.meta span {
  border-radius: 999px;
  border: 1px solid #cedbd8;
  background: #f6faf9;
  color: #244245;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.24rem 0.58rem;
}

.tip {
  margin: 0;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  background: #fff8f3;
  color: #57382e;
  padding: 0.53rem 0.8rem;
  font-size: 0.93rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.inline-link {
  color: var(--brand);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.inline-link:hover {
  color: var(--brand-2);
}

.card .button {
  justify-self: start;
  margin-top: 0.1rem;
}

.newsletter-stub {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(15, 64, 59, 0.14);
  padding: 1.2rem 0 2.1rem;
}

.footer-grid {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.muted {
  color: var(--muted);
}

.page-main {
  padding: 3.35rem 0 4rem;
}

.back-link {
  display: inline-flex;
  text-decoration: none;
  font-weight: 760;
  color: var(--brand);
}

.service-head {
  max-width: 860px;
  margin: 1rem 0 1.2rem;
}

.service-head .eyebrow {
  margin: 0 0 0.55rem;
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-head h1 {
  margin: 0;
}

.service-head p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.info-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.info-rail span {
  border: 1px solid #caded8;
  border-radius: 999px;
  background: #f4faf8;
  color: #234348;
  font-weight: 600;
  padding: 0.3rem 0.62rem;
  font-size: 0.84rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(185deg, #fff 0%, #fcfdfa 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ol {
  margin: 0.95rem 0 0;
  padding-left: 1.25rem;
}

.panel li + li {
  margin-top: 0.7rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.quick-facts div {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f8fcfa;
  padding: 0.8rem;
}

.quick-facts strong {
  display: block;
  font-size: 0.82rem;
  color: var(--brand);
  margin-bottom: 0.28rem;
}

.quick-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.step-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.step-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.8rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fdfefc;
  padding: 0.8rem;
}

.step-no {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e3f4ef, #d3ece6);
  color: var(--brand);
  font-weight: 800;
}

.step-copy strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--text);
}

.step-copy p {
  margin: 0;
}

.clean-list {
  margin: 0.9rem 0 0;
  padding-left: 1.05rem;
}

.clean-list li + li {
  margin-top: 0.45rem;
}

.mini-note {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid #f0d2b8;
  background: #fff7f0;
}

.mini-note p {
  margin: 0.28rem 0 0;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #cfe1dc;
  background: #f6fbf9;
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.link-chip:hover {
  border-color: var(--line-strong);
  background: #eef8f5;
}

.tip-box {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid #c7e9dd;
  background: linear-gradient(180deg, #edfaf5, #f6fcf9);
}

.tip-box p {
  margin: 0.35rem 0 0;
}

.cta-box {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.code-row {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  flex-wrap: wrap;
}

.code-pill {
  border-radius: 999px;
  border: 1px dashed #90aaa4;
  background: #f5fbf9;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.33rem 0.74rem;
}

.copy-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.44rem 0.76rem;
  font-weight: 740;
  color: var(--brand);
  background: var(--brand-soft);
  cursor: pointer;
}

.copy-btn:hover {
  filter: brightness(97%);
}

@media (max-width: 900px) {
  .hero-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.7rem;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 70px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .button {
    padding: 0.68rem 0.98rem;
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(1.74rem, 8vw, 2.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
