

.tarifs-hero .inner{
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:82px 0 42px;
}

.tarifs-split{
  grid-template-columns:1.05fr .95fr;
}

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

.tarifs-aside{
  justify-content:center;
  gap:12px;
  background:rgba(255,255,255,.42);
}

.tarifs-pill{
  display:inline-flex;
  width:fit-content;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(95,110,91,.12);
  color:var(--green-dark);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-family:"Segoe UI", Arial, sans-serif;
}

.tarifs-aside__value{
  font-size:clamp(1.8rem, 3vw, 2.5rem);
  line-height:1.05;
}

.tarifs-aside__note{
  padding-top:12px;
  border-top:1px solid rgba(76,68,61,.1);
  color:var(--muted);
  line-height:1.6;
}

.tarifs-section-head{
  margin-bottom:18px;
}

.tarifs-stack{
  display:grid;
  gap:20px;
}

.tarifs-panel{
  padding:28px 24px;
  background:rgba(255,255,255,.4);
}

.tarifs-panel__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:10px;
}

.tarifs-panel__head h3{
  margin:0 0 8px;
  font-size:clamp(1.45rem, 2.4vw, 2rem);
}

.tarifs-panel__head p{
  margin:0;
  color:var(--muted);
  line-height:1.62;
}

.tarifs-notes{
  margin:0 0 18px;
  padding-left:18px;
  color:var(--muted);
}

.tarifs-notes li + li{
  margin-top:6px;
}

.tarifs-table-wrap{
  overflow-x:auto;
}

.tarifs-table{
  width:100%;
  min-width:620px;
  border-collapse:collapse;
  background:#fff;
  border:1px solid rgba(76,68,61,.1);
  border-radius:18px;
  overflow:hidden;
}

.tarifs-table th,
.tarifs-table td{
  padding:12px 14px;
  border-bottom:1px solid rgba(76,68,61,.08);
  text-align:center;
  vertical-align:middle;
}

.tarifs-table thead th{
  background:rgba(246,240,231,.72);
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.tarifs-table td:first-child,
.tarifs-table th:first-child{
  text-align:left;
  min-width:230px;
}

.tarifs-table tbody tr:last-child td{
  border-bottom:0;
}

.tarifs-table tbody tr.is-highlight td{
  background:rgba(95,110,91,.08);
}

.tarifs-bottom{
  text-align:center;
  background:rgba(255,255,255,.42);
}

.tarifs-bottom h2{
  margin:0 0 12px;
  font-size:clamp(2rem, 3vw, 3rem);
}

.tarifs-bottom p{
  max-width:780px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.65;
}

.tarifs-bottom .center-actions{
  margin-top:24px;
}

@media (max-width: 960px){
  .tarifs-split{
    grid-template-columns:1fr;
  }
}

@media (max-width: 820px){
  .tarifs-hero{
    min-height:320px;
  }

  .tarifs-hero .inner{
    min-height:320px;
    padding:74px 0 28px;
  }

  .tarifs-panel{
    padding:22px 18px;
  }

  .tarifs-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .tarifs-actions .btn{
    width:100%;
  }

  .tarifs-table-wrap{
    overflow:visible;
  }

  .tarifs-table{
    min-width:0;
    border:0;
    background:transparent;
  }

  .tarifs-table thead{
    display:none;
  }

  .tarifs-table tbody{
    display:grid;
    gap:12px;
  }

  .tarifs-table tr{
    display:block;
    border:1px solid rgba(76,68,61,.1);
    border-radius:16px;
    background:#fff;
    overflow:hidden;
  }

  .tarifs-table tbody tr.is-highlight{
    border-color:rgba(95,110,91,.2);
  }

  .tarifs-table td{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    gap:12px;
    align-items:start;
    padding:10px 14px;
    text-align:right;
    border-bottom:1px solid rgba(76,68,61,.08);
  }

  .tarifs-table td::before{
    content:attr(data-label);
    text-align:left;
    color:var(--muted);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
  }

  .tarifs-table td:first-child{
    min-width:0;
    grid-template-columns:1fr;
    text-align:left;
    background:rgba(246,240,231,.62);
    font-weight:600;
  }

  .tarifs-table td:first-child::before{
    display:block;
    margin-bottom:4px;
    color:var(--text);
  }

  .tarifs-table tbody tr:last-child td:last-child{
    border-bottom:0;
  }

  .tarifs-bottom .center-actions{
    display:grid;
  }
}
