:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f1f5fb;
  --line: #dce5f0;
  --text: #18324a;
  --muted: #5b7289;
  --brand: #1173ff;
  --brand-dark: #0f5fd0;
  --accent: #17c29b;
  --shadow: 0 20px 60px rgba(17, 57, 102, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href],
button,
.btn,
.nav a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(17, 115, 255, 0.2);
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 229, 240, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #29a9ff);
  box-shadow: 0 14px 30px rgba(17, 115, 255, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: 0.2s ease;
  cursor: pointer;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--brand);
  background: var(--surface);
  outline: none;
}

.page-shell {
  padding: 34px 0 50px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero__content,
.page-hero__side,
.section-card,
.article-shell,
.sidebar-card,
.contact-card {
  padding: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1,
.page-title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-points {
  display: grid;
  gap: 14px;
}

.visual-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #eef4fb;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-points .mini-card {
  padding: 18px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.hero-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.hero-points p {
  margin: 0;
  color: var(--muted);
}

.section-grid {
  display: grid;
  gap: 18px;
}

.section-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-card h2,
.section-card h3,
.article-shell h2,
.article-shell h3,
.sidebar-card h3,
.contact-card h2,
.contact-card h3 {
  margin-top: 0;
  line-height: 1.15;
}

.section-card p,
.section-card li,
.article-shell p,
.article-shell li,
.sidebar-card p,
.contact-card p,
.contact-card li {
  color: var(--muted);
}

.section-card ul,
.article-shell ul,
.contact-card ul {
  padding-left: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-weight: 700;
  color: #334d68;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 16px;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 18px 38px rgba(17, 115, 255, 0.25);
}

.btn--ghost {
  background: var(--surface-soft);
  color: var(--brand);
  border-color: rgba(17, 115, 255, 0.14);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.2);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.post-card {
  padding: 26px;
}

.post-card__image {
  margin: -26px -26px 18px;
  overflow: hidden;
  border-radius: 24px 24px 18px 18px;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: #eef4fb;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.post-card h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.post-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.post-card__meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.article-layout--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

.article-top-media {
  margin: -30px -30px 18px;
  border-radius: 24px 24px 18px 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf1fb;
}

.article-top-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-main-title {
  margin: 0 0 12px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--text);
}

.article-main-lead {
  margin: 0 0 18px;
  color: #3a5873;
  font-size: 20px;
  line-height: 1.65;
}

.article-final-cta {
  margin-top: 26px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #102a4a 0%, #1e4a7a 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.article-final-cta h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.article-final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.article-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.article-final-cta__btn {
  min-height: 56px;
  min-width: 210px;
}

.article-final-cta__btn--light {
  background: #ffffff;
  color: #0d2440;
  border-color: #ffffff;
}

.article-final-cta__btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.article-shell .article-summary {
  margin: 20px 0 24px;
  padding: 20px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.article-shell .article-summary p {
  margin: 8px 0 0;
}

.article-shell h2 {
  margin: 28px 0 12px;
  font-size: 30px;
}

.article-shell h3 {
  margin: 24px 0 10px;
  font-size: 22px;
}

.article-shell blockquote {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background: #f7fbff;
  border-radius: 0 16px 16px 0;
  color: var(--text);
}

.article-shell section + section {
  margin-top: 28px;
}

.fincan-article-lead {
  font-size: 19px;
  line-height: 1.75;
  color: #38526a;
}

.fincan-summary-box,
.fincan-faq-box {
  margin: 22px 0;
  padding: 20px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.fincan-summary-box h3,
.fincan-faq-box h3 {
  margin-top: 0;
}

.fincan-faq-box p {
  margin: 0 0 12px;
}

.fincan-faq-box p:last-child {
  margin-bottom: 0;
}

.fincan-checklist {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.fincan-checklist__item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
}

.fincan-checklist__item i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f7f2;
  color: #17936f;
  font-style: normal;
  font-weight: 900;
}

.fincan-checklist__item i::before {
  content: "✓";
}

.fincan-checklist__item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.fincan-checklist__item p {
  margin: 0;
}

.fincan-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  table-layout: fixed;
}

.fincan-compare-table th,
.fincan-compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.fincan-compare-table th {
  background: #eef5ff;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.fincan-compare-table tr:last-child td {
  border-bottom: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.sidebar-card + .sidebar-card {
  margin-top: 18px;
}

.inline-links {
  display: grid;
  gap: 12px;
}

.inline-links a {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--text);
}

.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  margin-bottom: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.plan-card {
  position: relative;
  display: block;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  cursor: pointer;
  transition: 0.2s ease;
}

.plan-card input {
  position: absolute;
  inset: 18px 18px auto auto;
}

.plan-card:hover,
.plan-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(17, 115, 255, 0.24);
}

.plan-card--featured {
  background: linear-gradient(180deg, #eaf4ff 0%, #f7fbff 100%);
  border-color: rgba(17, 115, 255, 0.2);
}

.plan-card__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf5ff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-card__price {
  margin: 14px 0 4px;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text);
}

.plan-card__meta {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.purchase-form {
  align-self: start;
}

.stack-lg {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(17, 115, 255, 0.16);
  border-color: rgba(17, 115, 255, 0.3);
}

.btn--block {
  width: 100%;
}

.status-box {
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #eef5ff;
  color: var(--text);
}

.status-box--success {
  background: #edf9f4;
  border-color: rgba(23, 194, 155, 0.25);
}

.status-box--error {
  background: #fff1f3;
  border-color: rgba(226, 78, 98, 0.25);
}

.status-box--info {
  background: #eef5ff;
  border-color: rgba(17, 115, 255, 0.2);
}

.inline-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--muted);
}

.token-panel {
  padding: 22px;
  border-radius: 22px;
  background: var(--surface-soft);
  border: 1px dashed rgba(17, 115, 255, 0.25);
}

.token-panel--visible {
  border-style: solid;
  background: #edf9f4;
  border-color: rgba(23, 194, 155, 0.22);
}

.token-display {
  margin-bottom: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.tutorial-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.checkout-page {
  padding: 28px 0 56px;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef3f9 100%);
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 247, 251, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 229, 242, 0.9);
}

.checkout-header__inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.checkout-header__safe {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef8ef;
  border: 1px solid #cfe7d2;
  color: #2d6d36;
  font-size: 13px;
  font-weight: 800;
}

.checkout-page__container {
  width: min(1080px, calc(100% - 32px));
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  color: #7b8ea3;
}

.checkout-step span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #d8dee8;
  color: #fff;
  font-weight: 800;
}

.checkout-step strong {
  font-size: 16px;
}

.checkout-step--active {
  color: var(--text);
  background: #fff;
  box-shadow: 0 16px 34px rgba(17, 57, 102, 0.06);
}

.checkout-step--active span {
  background: var(--brand);
}

.checkout-main__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 8px;
}

.checkout-page__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.checkout-page__lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.checkout-topbar__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.checkout-status {
  margin-bottom: 18px;
}

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: start;
}

.checkout-main,
.checkout-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.checkout-main {
  padding: 30px;
}

.checkout-main__section + .checkout-main__section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.checkout-main__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.checkout-main__header h2,
.checkout-summary h2,
.checkout-support h3 {
  margin: 0;
  line-height: 1.12;
}

.checkout-main__header p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.checkout-section-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-grid--checkout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plan-card--checkout {
  position: relative;
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

.plan-card--checkout input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-card--checkout:hover {
  border-color: rgba(17, 115, 255, 0.28);
  transform: translateY(-1px);
}

.plan-card--checkout:has(input:checked) {
  border-color: rgba(17, 115, 255, 0.45);
  box-shadow: 0 20px 50px rgba(17, 115, 255, 0.12);
}

.plan-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.plan-card__row h3 {
  margin: 8px 0 0;
}

.plan-card__radio {
  width: 20px;
  height: 20px;
  margin-top: 6px;
  border-radius: 999px;
  border: 1px solid #b7c5d8;
  background: #fff;
  flex: 0 0 auto;
}

.plan-card--checkout:has(input:checked) .plan-card__radio {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: inset 0 0 0 4px #fff;
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-inline-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.checkout-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}

.checkout-summary {
  padding: 26px;
}

.checkout-summary__safe {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  margin: -26px -26px 18px;
  background: #7dd85e;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 28px 28px 16px 0;
}

.checkout-summary__brandline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.checkout-summary__brandline a {
  font-weight: 700;
  color: var(--brand);
}

.checkout-summary__price {
  margin: 12px 0 10px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.checkout-summary__description {
  margin: 0 0 18px;
  color: var(--muted);
}

.checkout-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.checkout-payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  color: #3a546e;
}

.checkout-summary__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}

.checkout-summary__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.checkout-summary__list strong {
  color: var(--text);
  text-align: right;
}

.checkout-summary__note {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid rgba(17, 115, 255, 0.12);
  color: #365470;
  font-size: 14px;
}

.checkout-summary__coupon {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px dashed #c7d5e6;
  background: #fff;
}

.checkout-summary__coupon span {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
  color: var(--text);
}

.checkout-summary__coupon small {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 960px) {
  .purchase-layout,
  .checkout-steps,
  .checkout-shell,
  .article-layout,
  .page-hero,
  .section-grid.cols-2,
  .section-grid.cols-3,
  .posts-grid,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .checkout-main__intro,
  .checkout-main__header {
    flex-direction: column;
  }

  .checkout-page__lead,
  .checkout-main__header p {
    max-width: none;
  }

  .checkout-sidebar {
    position: static;
    top: auto;
  }

  .pricing-grid--checkout {
    grid-template-columns: 1fr;
  }
}

.status-message {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
}

.status-message.success {
  background: #eefcf5;
  color: #146c43;
  border: 1px solid #c4efd8;
}

.status-message.error {
  background: #fff1f2;
  color: #9f1239;
  border: 1px solid #fecdd3;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
}

.textarea {
  min-height: 180px;
  resize: vertical;
}

.field:focus,
.textarea:focus {
  outline: 2px solid rgba(17, 115, 255, 0.12);
  border-color: rgba(17, 115, 255, 0.35);
}

.hidden-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-methods {
  display: grid;
  gap: 16px;
}

.contact-method {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.contact-method strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.site-footer {
  padding: 18px 0 38px;
  color: var(--muted);
  text-align: center;
  font-size: 15px;
}

.site-footer strong {
  color: var(--text);
}

@media (max-width: 960px) {
  .site-header__inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .page-hero,
  .section-grid.cols-2,
  .section-grid.cols-3,
  .posts-grid,
  .article-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .fincan-compare-table {
    table-layout: auto;
  }

  .page-hero__content,
  .page-hero__side,
  .section-card,
  .article-shell,
  .sidebar-card,
  .contact-card,
  .checkout-main,
  .checkout-summary {
    padding: 24px;
  }

  .article-final-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .article-final-cta__actions {
    justify-content: flex-start;
  }

  .article-final-cta__btn {
    width: 100%;
    min-width: 0;
  }

  .article-top-media {
    margin: -24px -24px 16px;
  }

  .article-main-title {
    font-size: clamp(34px, 8vw, 52px);
    line-height: 1.02;
  }

  .article-main-lead {
    font-size: 18px;
  }

  .actions .btn,
  .cta-row .btn,
  .checkout-actions .btn {
    width: 100%;
  }
}

/* Modern visual refresh */
:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --surface-strong: #eef4ff;
  --line: #dbe5f2;
  --text: #11253b;
  --muted: #60758d;
  --brand: #1769ff;
  --brand-dark: #0d4fd4;
  --accent: #12b886;
  --shadow: 0 22px 60px rgba(15, 41, 74, 0.08);
  --shadow-soft: 0 12px 32px rgba(15, 41, 74, 0.06);
  --radius: 28px;
}

body {
  background-image:
    radial-gradient(circle at top left, rgba(23, 105, 255, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(18, 184, 134, 0.06), transparent 22%);
}

.site-header {
  background: rgba(244, 247, 251, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 229, 242, 0.9);
}

.brand__mark {
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), #35a2ff);
  box-shadow: 0 16px 34px rgba(23, 105, 255, 0.25);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.materials-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: 20px;
  margin-bottom: 22px;
}

.materials-hero__copy,
.materials-hero__panel {
  padding: 32px;
}

.materials-hero__copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.98)),
    radial-gradient(circle at top right, rgba(23, 105, 255, 0.16), transparent 30%);
}

.materials-hero__panel {
  background: linear-gradient(180deg, #11253b, #17385d);
  color: #f5f8fc;
}

.materials-hero__panel strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.materials-hero__panel p {
  margin: 0 0 12px;
  color: rgba(245, 248, 252, 0.82);
}

.materials-hero__pills,
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.materials-hero__pills span,
.article-hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  color: #31506d;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 0;
  overflow: hidden;
  margin-bottom: 18px;
}

.featured-post__image {
  min-height: 100%;
  background: #ebf2fb;
}

.featured-post__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.featured-post__content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post__content h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.featured-post__content p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
}

.materials-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 16px;
}

.materials-section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.materials-section-head p {
  margin: 0;
  max-width: 540px;
  color: var(--muted);
}

.posts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-card {
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
}

.post-card__image {
  margin: -22px -22px 18px;
  border-radius: 28px 28px 18px 18px;
  aspect-ratio: 16 / 9;
}

.post-card h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.article-layout {
  gap: 22px;
}

.article-hero {
  margin-bottom: 6px;
}

.article-shell h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-shell h3 {
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.fincan-article-lead {
  font-size: 20px;
  line-height: 1.78;
  color: #304d67;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
}

.inline-links a:hover {
  background: var(--surface-strong);
}

@media (max-width: 960px) {
  .materials-hero,
  .featured-post {
    grid-template-columns: 1fr;
  }

  .materials-section-head {
    align-items: start;
    flex-direction: column;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}
