:root {
  --bg: #0b0d10;
  --bg2: #081628;
  --card: #0e1218;
  --card2: #0b111a;
  --text: #e9eef5;
  --muted: rgba(233, 238, 245, 0.68);
  --muted2: rgba(233, 238, 245, 0.5);
  --line: rgba(233, 238, 245, 0.1);
  --gold: #c7a25a;
  --gold2: #9e7c3e;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 22px;
  --radius2: 18px;
  --max: 1180px;
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans:
    ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  background:
    radial-gradient(
      1200px 600px at 50% -20%,
      rgba(199, 162, 90, 0.12),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 50% 30%,
      rgba(8, 22, 40, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), #07090c 60%, var(--bg));
  color: var(--text);
}

p {
  line-height: 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 13, 16, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.brand-mark {
  font-family: var(--serif);
  letter-spacing: 0.08em;
  font-size: 20px;
  font-weight: bold;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-trust {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}
.nav {
  display: flex;
  gap: 42px;
  font-size: 14px;
  color: var(--muted);
}
.nav a:hover {
  color: var(--text);
}
.header-cta {
  display: flex;
  gap: 10px;
}

/* Hero */
.hero {
  padding: 68px 0 34px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trustline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  white-space: nowrap;
}
.trust-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 162, 90, 0.12);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.22;
  margin: 2px 0 9px;
}
.hero-subtitle {
  margin: 26px 0px 0px 0px;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 3vw, 25px);
  line-height: 1.6;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 43px 0 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(21px, 3vw, 30px);
}
.hero-bullets {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 29px 0 4px;
  color: var(--muted2);
  font-size: clamp(14px, 3.5vw, 19px);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-bullets li {
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 10px 10px;
  margin-top: 11px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 162, 90, 0.55);
}
.btn--primary {
  background: rgba(199, 162, 90, 0.12);
  border-color: rgba(199, 162, 90, 0.55);
  color: #f5ead2;
}
.btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}
.btn--full {
  width: 100%;
}

/* Pills (header) */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 175, 55, 0.88);
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
}
.pill--ghost {
  background: transparent;
}

/* Cards */
.cards {
  width: 100%;
  margin-top: px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 36px);
  margin: 30px 0 50px;
  color: rgba(233, 238, 245, 0.92);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.card {
  display: block;
  padding: 18px 16px;
  border-radius: var(--radius);
  background:
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(199, 162, 90, 0.09),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(14, 18, 24, 0.92), rgba(11, 17, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
  min-height: 160px;
}
.card:hover {
  border-color: rgba(199, 162, 90, 0.35);
  transform: translateY(-1px);
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
}
.card p {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.5;
}
.card-cta {
  color: rgba(199, 162, 90, 0.95);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 13px;
}
/* .tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(199, 162, 90, 0.35);
  background: rgba(199, 162, 90, 0.1);
  color: #f5ead2;
} */

/* Cards Article */
.card-article {
  display: block;
  padding: 18px 16px;
  border-radius: var(--radius);
  background:
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(199, 162, 90, 0.09),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(14, 18, 24, 0.92), rgba(11, 17, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
  min-height: 160px;
  margin-bottom: 20px;
}
.card:hover {
  border-color: rgba(199, 162, 90, 0.35);
  transform: translateY(-1px);
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
}
.card p {
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.5;
}
.card-cta {
  color: rgba(199, 162, 90, 0.95);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 13px;
}
.tag {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(199, 162, 90, 0.35);
  background: rgba(199, 162, 90, 0.1);
  color: #f5ead2;
}

/* How */
.how {
  padding: 56px 0;
  background: linear-gradient(180deg, rgba(8, 22, 40, 0.65), rgba(0, 0, 0, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.step {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(199, 162, 90, 0.35);
  background: rgba(199, 162, 90, 0.1);
  color: #f5ead2;
  font-weight: 800;
}
.step h3 {
  margin: 12px 0 6px;
  font-family: var(--serif);
  font-size: 20px;
}
.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Lead */
.lead {
  padding: 62px 0 90px;
}
.lead-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.lead-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  margin: 6px 0 10px;
}
.lead-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.7;
}
.lead-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.proof-item {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
  color: var(--muted);
  min-width: 160px;
}
.proof-item strong {
  color: rgba(233, 238, 245, 0.92);
}

.lead-card {
  border-radius: var(--radius);
  background:
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(199, 162, 90, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, rgba(14, 18, 24, 0.92), rgba(11, 17, 26, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  padding: 18px;
}
label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 8px;
}
input,
select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  outline: none;
}
input::placeholder {
  color: rgba(233, 238, 245, 0.35);
}
input:focus,
select:focus {
  border-color: rgba(199, 162, 90, 0.45);
  box-shadow: 0 0 0 6px rgba(199, 162, 90, 0.1);
}
.notice {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(199, 162, 90, 0.25);
  background: rgba(199, 162, 90, 0.08);
  color: rgba(233, 238, 245, 0.86);
}
.channels {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.tiny {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(233, 238, 245, 0.72);
}
.tiny-muted {
  color: rgba(233, 238, 245, 0.48);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(8, 12, 18, 0.9),
    rgba(5, 8, 12, 0.96)
  );
  padding: 34px 0 90px;
  margin-top: 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.footer-main {
  min-width: 0;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  color: rgba(245, 234, 210, 0.96);
  letter-spacing: 0.01em;
}

.footer-tagline {
  margin: 0;
  color: rgba(233, 238, 245, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-copy {
  display: grid;
  gap: 12px;
  color: rgba(233, 238, 245, 0.62);
  font-size: 0.94rem;
  line-height: 1.75;
}

.footer-copy p {
  margin: 0;
}

.footer-copy a {
  color: rgba(233, 238, 245, 0.88);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-copy a:hover {
  color: #f5ead2;
}

.footer-license {
  color: rgba(233, 238, 245, 0.5);
  font-size: 0.88rem;
}

.footer-nav {
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(199, 162, 90, 0.08),
      transparent 58%
    ),
    rgba(255, 255, 255, 0.025);
}

.footer-nav-title {
  margin: 0 0 14px;
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(245, 234, 210, 0.95);
  letter-spacing: 0.01em;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: rgba(233, 238, 245, 0.72);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-links a:hover {
  color: rgba(245, 234, 210, 0.96);
  transform: translateX(2px);
}

.footer-copyright {
  color: rgba(233, 238, 245, 0.48);
  font-size: 0.86rem;
}

/* calc */
#active-calculator-title {
  margin: 28px 0 8px;
  font-size: clamp(1.4rem, 2vw, 1.55rem);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(245, 247, 250, 0.96);
}
.calc-drawer {
  margin: 12px auto 0;
  max-width: 880px;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.18);
  scroll-margin-top: 125px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.calc-grid label,
.calc-field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(233, 238, 245, 0.94);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.calc-field input,
.calc-grid select {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 10, 16, 0.72);
  color: rgba(233, 238, 245, 0.96);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.calc-field input {
  padding: 0 14px;
}

.calc-field input::placeholder {
  color: rgba(233, 238, 245, 0.42);
}

.calc-grid select {
  padding: 0 42px 0 14px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='rgba(233,238,245,0.82)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.calc-field input:hover,
.calc-grid select:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background-color: rgba(10, 14, 22, 0.8);
}

.calc-field input:focus,
.calc-grid select:focus {
  outline: none;
  border-color: rgba(212, 170, 84, 0.5);
  box-shadow:
    0 0 0 3px rgba(212, 170, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background-color: rgba(10, 14, 22, 0.84);
}

.calc-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.calc-actions button {
  flex: 1;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 16, 0.72);
  color: rgba(233, 238, 245, 0.96);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}
.calc-actions button:first-child {
  border-color: rgba(212, 170, 84, 0.34);
  box-shadow:
    0 0 0 1px rgba(212, 170, 84, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.calc-actions button:first-child:hover,
.calc-actions button:first-child:focus {
  border-color: rgba(212, 170, 84, 0.5);
}
.calc-actions button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 22, 0.82);
  transform: translateY(-1px);
}
.calc-actions button:focus {
  outline: none;
  border-color: rgba(212, 170, 84, 0.5);
  box-shadow:
    0 0 0 3px rgba(212, 170, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.calc-actions button:active {
  transform: translateY(0);
}

.calc-result {
  margin-top: 20px;
}

/* Result */
#accidente-resultValue {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 18px;
  color: rgba(245, 247, 250, 0.98);
}
#casco-resultValue {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  color: rgba(245, 247, 250, 0.98);
}
#casco-resultMeta {
  white-space: pre-line;
}
#rca-straine-resultValue {
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 18px;
  color: rgba(245, 247, 250, 0.98);
}
#rca-straine-resultMeta {
  white-space: pre-line;
}
#medicala_resultValue {
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 18px;
  color: rgba(245, 247, 250, 0.98);
}
#cv_resultValue {
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 18px;
  color: rgba(245, 247, 250, 0.98);
}
#resultValue {
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 24px 0 18px;
  color: rgba(245, 247, 250, 0.98);
}
#resultMeta {
  white-space: pre-line;
  max-width: 30ch;
  margin: 0 auto;
  font-size: 0.96rem;
  line-height: 1.18;
  font-weight: 500;
  color: rgba(233, 238, 245, 0.92);
}
.calc-contact {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.calc-contact > * {
  min-width: 0;
}
.calc-send {
  min-width: 0;
  flex: 1 1 220px;
  text-align: center;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 16, 0.72);
  color: rgba(233, 238, 245, 0.96);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.15;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.calc-send:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 14, 22, 0.82);
  transform: translateY(-1px);
}

.calc-send:focus {
  outline: none;
  border-color: rgba(212, 170, 84, 0.42);
  box-shadow:
    0 0 0 3px rgba(212, 170, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.calc-send:active {
  transform: translateY(0);
}

.calc-send[aria-disabled="true"] {
  opacity: 0.35;
  pointer-events: none;
}

/* rca button */
.card-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(212, 170, 84, 0.48);
  border-radius: 14px;
  background: linear-gradient(180deg, #e4cc97 0%, #d2b06a 100%);
  color: #241c0f;
  font-size: clamp(0.88rem, 2.2vw, 0.96rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.card-cta-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #f2e3c2 0%, #e5cf9f 100%);
  border-color: rgba(212, 170, 84, 0.6);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(212, 170, 84, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.card-cta-btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.card-cta-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(244, 234, 212, 0.14),
    0 0 0 6px rgba(212, 170, 84, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.24);
}
.card.is-open {
  border-color: rgba(214, 177, 92, 0.42);
  box-shadow:
    0 0 0 1px rgba(214, 177, 92, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.22);
}
/* Sticky bar */
.sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  justify-content: center;
  z-index: 60;
}
.sticky-contact-pill {
  width: min(100%, 320px);
  display: flex;
  align-items: stretch;
  background: rgba(4, 8, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.sticky-contact-pill__item {
  flex: 1 1 50%;
  min-height: 46px;
  padding: 0 14px;
  font-size: 0.9rem;
  color: #f3f4f6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.01);
}
.sticky-contact-pill__item + .sticky-contact-pill__item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.sticky-contact-pill__icon {
  font-size: 0.9rem;
  line-height: 1;
}
.sticky-contact-pill__icon--wa {
  color: #7fcb8a;
}
.sticky-contact-pill__icon--viber {
  color: #a78bfa;
}
#stickyWA {
  background: rgba(34, 197, 94, 0.08);
}

#stickyViber {
  background: rgba(139, 92, 246, 0.08);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Terminologia */
.terms-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.terms-shortcuts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.terms-shortcuts a:hover,
.terms-shortcuts a:focus-visible {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-1px);
}

.terms-shortcuts-block {
  text-align: center;
}

.terms-shortcuts-block .section-title {
  text-align: center;
  margin-bottom: 24px;
}

.terms-shortcuts {
  justify-content: center;
}

/* Links */
.link {
  color: rgba(233, 238, 245, 0.72);
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.link:hover {
  color: rgba(245, 234, 210, 0.96);
}

/* Cards title links */
.card-title-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.card-title-link:hover {
  color: rgba(245, 234, 210, 0.96);
}

.card-title-link:focus-visible {
  outline: none;
  color: rgba(245, 234, 210, 0.96);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* anchor scroll helpers */
html {
  scroll-behavior: smooth;
}
#faq {
  scroll-margin-top: 85px;
}

.card-article.card-article-terms {
  scroll-margin-top: 85px;
}

/* Responsive */
/* Tablet */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .hero-bullets {
    list-style: none;
    display: flex;
    gap: 1px;
    padding: 0;
    margin: 29px 0 1px;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }
  .card {
    align-self: start;
    padding: 22px 18px;
    min-height: 175px;
  }
  .card-cta-btn {
    min-width: 190px;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.95rem;
  }
  .card h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .card p {
    margin: 8px 0 18px;
    font-size: 1.02rem;
    line-height: 1.45;
    max-width: 30ch;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .lead-inner {
    grid-template-columns: 1fr;
  }

  /* footer mobile footer tablet */
  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .footer-main {
    order: 2;
  }
  .footer-nav {
    order: 1;
    max-width: none;
    width: 100%;
  }

  /* errors */
  #errorBox {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.35;
  }
  .calc-hint {
    margin-top: 8px;
    padding: 0;
    line-height: 1.45;
    font-weight: 400;
    font-size: 0.78rem;
    color: rgba(233, 238, 245, 0.72);
  }
}

/* Mobile */
@media (max-width: 560px) {
  .hero {
    padding-top: 35px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .sticky-bar {
    display: flex;
    gap: 10px;
  }
  .sticky-btn {
    padding: 10px 8px;
    background: linear-gradient(to top, rgba(7, 7, 7, 0.55), rgba(7, 7, 7, 0));
    border-radius: 20px;
  }
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  .trustline {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  /* footer mobile */
  .site-footer {
    padding: 28px 0 110px;
  }

  .footer-inner {
    gap: 18px;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .footer-copy {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .footer-nav {
    padding: 16px;
    border-radius: 16px;
  }

  .footer-links a {
    min-height: 34px;
  }
}
@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}
