/* whitepage-custom.css — ION-TIRIAC variant restyle v4 (cont curent vs economii vs depozit) */

.wp-body {
  --wp-ink: #241832;
  --wp-muted: #6b6577;
  --wp-line: #eae4f2;
  --wp-surface: #faf8fc;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* Header */
.wp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--wp-line);
}
.wp-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wp-logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.wp-logo__mark {
  color: var(--wg-primary) !important;
}
.wp-logo__tail {
  color: var(--wp-ink) !important;
}
.wp-nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wp-nav a {
  color: var(--wp-muted) !important;
  text-decoration: none;
}
.wp-nav a:hover,
.wp-nav__active {
  color: var(--wg-primary) !important;
}
@media (max-width: 860px) {
  .wp-nav { display: none; }
}

/* Hero */
.wp-hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .wp-hero { grid-template-columns: 1fr; }
}
.wp-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wg-primary);
  border: 1px solid var(--wg-primary);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
}
.wp-hero__title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--wp-ink);
  margin: 0 0 18px;
}
.wp-hero__title span {
  color: var(--wg-primary);
}
.wp-hero__lead {
  font-size: 15px;
  color: var(--wp-muted);
  line-height: 1.7;
  margin-bottom: 26px;
}
.wp-hero__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

/* Sections */
.wp-section {
  padding: 68px 24px;
}
.wp-section--alt {
  background: var(--wp-surface);
}
.wp-section__header {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}
.wp-section__header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--wp-ink);
  margin: 0 0 10px;
}
.wp-section__header p {
  color: var(--wp-muted);
  font-size: 14px;
}

/* Three-column comparison */
.wp-columns {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 860px) {
  .wp-columns { grid-template-columns: 1fr; }
}
.wp-col {
  background: #fff;
  border: 1px solid var(--wp-line);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.wp-col--active {
  border-color: var(--wg-primary);
  box-shadow: 0 20px 45px -24px rgba(109, 40, 217, 0.4);
  transform: translateY(-8px);
}
.wp-col__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wg-primary);
  background: var(--wp-surface);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.wp-col img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}
.wp-col h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--wp-ink);
  margin: 0 0 6px;
}
.wp-col__stat {
  font-size: 12px;
  font-weight: 700;
  color: var(--wg-primary);
  margin: 0 0 10px;
}
.wp-col p:not(.wp-col__stat) {
  font-size: 13px;
  line-height: 1.6;
  color: var(--wp-muted);
  margin: 0;
}

.wp-section__grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .wp-section__grid { grid-template-columns: 1fr; }
}
.wp-media-card img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.wp-text-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--wp-ink);
  margin: 0 0 16px;
}
.wp-text-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wp-muted);
  margin-bottom: 14px;
}

/* Panel with checklist */
.wp-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 68px 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .wp-panel { grid-template-columns: 1fr; }
}
.wp-panel__img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.wp-panel__text h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--wp-ink);
  margin: 0 0 20px;
}
.wp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wp-checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--wp-muted);
}
.wp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wg-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact */
.wp-contact {
  padding: 68px 24px;
  background: var(--wp-surface);
}
.wp-contact__inner {
  max-width: 620px;
  margin: 0 auto;
}
.wp-contact__header {
  text-align: center;
  margin-bottom: 36px;
}
.wp-contact__header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--wp-ink);
  margin: 0 0 10px;
}
.wp-contact__header p {
  font-size: 13px;
  color: var(--wp-muted);
}
.wp-form {
  background: #fff;
  border: 1px solid var(--wp-line);
  border-radius: 16px;
  padding: 32px;
}
.wp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 560px) {
  .wp-form__row { grid-template-columns: 1fr; }
}
.wp-form__field { margin-bottom: 20px; }
.wp-form__row .wp-form__field { margin-bottom: 0; }
.wp-form__field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wp-muted);
  margin-bottom: 8px;
}
.wp-form__field input {
  width: 100%;
  border: 1px solid var(--wp-line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--wp-ink);
  background: #fff;
}
.wp-form__field input:focus {
  outline: none;
  border-color: var(--wg-primary);
}
.wp-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.wp-form__agree label {
  font-size: 11px;
  color: var(--wp-muted);
  line-height: 1.5;
}
.wp-form__submit {
  width: 100%;
}
.wp-success {
  margin-top: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #f3edff;
  text-align: center;
  font-size: 13px;
  color: var(--wg-accent);
}

/* Footer */
.wp-footer {
  background: var(--wp-ink);
  color: #a99bb8;
  padding: 48px 24px 32px;
  font-size: 12px;
}
.wp-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.wp-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .wp-footer__grid { grid-template-columns: 1fr; }
}
.wp-footer h5 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.wp-footer p {
  margin: 0 0 6px;
  line-height: 1.6;
}
.wp-footer a {
  color: #a99bb8 !important;
  text-decoration: none;
}
.wp-footer a:hover {
  color: #fff !important;
}
.wp-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  color: #766a85;
}
