/**
 * Free trial page – get-trial.php only
 */
:root {
  --trial-navy: #071a42;
  --trial-blue: #0b2b6f;
  --trial-accent: #0062ff;
  --trial-primary: #ffb302;
  --trial-primary-dark: #e6a000;
  --trial-muted: #5c6370;
  --trial-radius: 16px;
  --trial-shadow: 0 12px 40px rgba(11, 43, 111, 0.1);
  --section-y: clamp(64px, 8vw, 88px);
}

.page-trial main {
  overflow-x: hidden;
}

/* ── Hero ── */
.trial-hero {
  background: linear-gradient(125deg, #0040c1 0%, #0b2b6f 48%, #071a42 100%);
  padding: var(--section-y) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 85% 30%, rgba(255, 179, 2, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, rgba(7, 26, 66, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.trial-hero .container {
  position: relative;
  z-index: 1;
}

.trial-hero__badge {
  display: inline-block;
  background: rgba(255, 179, 2, 0.15);
  border: 1px solid rgba(255, 179, 2, 0.4);
  color: var(--trial-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 16px;
}

.trial-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff;
  margin-bottom: 16px;
  max-width: 600px;
  letter-spacing: -0.02em;
}

.trial-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 18px;
}

.trial-hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--trial-primary);
  background: rgba(255, 179, 2, 0.12);
  border: 1px solid rgba(255, 179, 2, 0.25);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 18px;
}

.trial-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 12px;
}

@media (min-width: 576px) {
  .trial-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

.trial-hero__trust li {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trial-hero__trust li i {
  color: var(--trial-primary);
  font-size: 12px;
}

.trial-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 14px;
}

.trial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  min-height: 48px;
  border: 2px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.trial-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.trial-btn--whatsapp {
  background: #128C7E;
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.35);
}

.trial-btn--whatsapp:hover {
  background: #0f7668;
  color: #fff;
}

.trial-btn--primary {
  background: var(--trial-primary);
  color: var(--trial-navy);
  box-shadow: 0 8px 24px rgba(255, 179, 2, 0.35);
}

.trial-btn--primary:hover {
  background: var(--trial-primary-dark);
  color: var(--trial-navy);
}

.trial-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.trial-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.trial-hero__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.trial-hero__img-wrap {
  position: relative;
}

.trial-hero__img-frame {
  position: relative;
  border-radius: calc(var(--trial-radius) + 2px);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trial-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ── Sections ── */
.trial-section {
  padding: var(--section-y) 0;
}

.trial-section--alt {
  background: #f8f9fc;
}

.trial-section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 5vw, 44px);
}

.trial-section__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--trial-blue);
  margin-bottom: 10px;
}

.trial-section__head h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--trial-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.trial-section__head p {
  color: var(--trial-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Social proof ── */
.trial-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .trial-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .trial-reviews__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trial-review {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--trial-radius) + 2px);
  padding: 22px 20px;
  box-shadow: 0 8px 28px rgba(11, 43, 111, 0.07);
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trial-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(11, 43, 111, 0.11);
}

.trial-review__stars {
  color: var(--trial-primary);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.trial-review__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--trial-navy);
  margin: 0 0 14px;
  font-style: italic;
}

.trial-review__author {
  font-size: 13px;
  font-weight: 700;
  color: var(--trial-muted);
  margin: 0;
}

/* ── Benefit cards ── */
.trial-benefits__grid .col-md-6,
.trial-benefits__grid .col-lg-3 {
  display: flex;
}

.trial-benefit {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--trial-radius) + 2px);
  padding: 24px 20px;
  width: 100%;
  height: 100%;
  box-shadow: 0 8px 28px rgba(11, 43, 111, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trial-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 43, 111, 0.12);
  border-color: rgba(255, 179, 2, 0.25);
}

.trial-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 179, 2, 0.18) 0%, rgba(11, 43, 111, 0.06) 100%);
  color: var(--trial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.trial-benefit h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--trial-navy);
  margin-bottom: 8px;
}

.trial-benefit p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--trial-muted);
  margin: 0;
}

/* ── Process steps ── */
.trial-process__steps {
  display: grid;
  gap: 14px;
}

.trial-step-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 6px 22px rgba(11, 43, 111, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trial-step-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(11, 43, 111, 0.1);
}

.trial-step-card__num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trial-blue) 0%, var(--trial-navy) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trial-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--trial-navy);
  margin: 0 0 6px;
}

.trial-step-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--trial-muted);
  margin: 0;
}

.trial-process__info {
  background: linear-gradient(165deg, #fff 0%, #f8faff 100%);
  border: 1px solid #e8ecf4;
  border-radius: calc(var(--trial-radius) + 2px);
  padding: clamp(24px, 4vw, 32px);
  box-shadow: var(--trial-shadow);
  height: 100%;
}

.trial-process__info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--trial-navy);
  margin-bottom: 10px;
}

.trial-process__info > p {
  font-size: 14px;
  color: var(--trial-muted);
  margin-bottom: 14px;
}

.trial-process__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.trial-process__list li {
  font-size: 14px;
  color: var(--trial-muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.trial-process__list li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: var(--trial-primary-dark);
  font-size: 12px;
}

.trial-process__mini-cta {
  padding-top: 16px;
  border-top: 1px solid #e8ecf4;
}

.trial-process__mini-cta p {
  font-size: 13px;
  font-weight: 600;
  color: var(--trial-navy);
  margin-bottom: 12px;
}

/* ── Device compatibility ── */
.trial-devices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 991.98px) {
  .trial-devices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .trial-devices__grid {
    grid-template-columns: 1fr;
  }
}

.trial-device {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(11, 43, 111, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trial-device:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 43, 111, 0.1);
}

.trial-device__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: rgba(11, 43, 111, 0.06);
  color: var(--trial-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.trial-device h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--trial-navy);
  margin: 0;
}

.trial-devices__note {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
  color: var(--trial-muted);
}

.trial-devices__note a {
  color: var(--trial-blue);
  font-weight: 700;
  text-decoration: none;
}

.trial-devices__note a:hover {
  text-decoration: underline;
}

/* ── SEO content ── */
.trial-seo {
  max-width: 820px;
  margin: 0 auto;
}

.trial-seo h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--trial-navy);
  margin: 32px 0 12px;
  line-height: 1.3;
}

.trial-seo h2:first-child {
  margin-top: 0;
}

.trial-seo h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--trial-navy);
  margin: 24px 0 10px;
}

.trial-seo p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--trial-muted);
  margin-bottom: 12px;
}

.trial-seo a {
  color: var(--trial-blue);
  font-weight: 600;
}

/* ── After trial trust ── */
.trial-after {
  background: linear-gradient(135deg, var(--trial-navy) 0%, var(--trial-blue) 100%);
  color: #fff;
  border-radius: calc(var(--trial-radius) + 4px);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 20px 56px rgba(11, 43, 111, 0.2);
}

.trial-after h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.trial-after > p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
}

.trial-after ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.trial-after ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.trial-after ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: var(--trial-primary);
  font-size: 12px;
}

/* ── FAQ ── */
.trial-faq .accordion-items {
  border: 1px solid #e8ecf4;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.trial-faq .accordion-buttons {
  font-size: 15px;
  font-weight: 600;
  padding: 18px 48px 18px 20px;
  color: var(--trial-navy);
  width: 100%;
  text-align: left;
  min-height: 56px;
  display: flex;
  align-items: center;
  background: transparent;
}

.trial-faq .accordion-buttons:not(.collapsed) {
  color: var(--trial-blue);
  background: rgba(11, 43, 111, 0.04);
}

.trial-faq .accordion-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--trial-muted);
  padding: 0 20px 18px;
}

/* ── Final CTA ── */
.trial-cta {
  background: linear-gradient(135deg, var(--trial-navy) 0%, var(--trial-blue) 55%, #1a4a9e 100%);
  padding: clamp(56px, 8vw, 72px) 0;
  color: #fff;
}

.trial-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.trial-cta h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.trial-cta p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.trial-cta__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--trial-primary);
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 179, 2, 0.12);
  border: 1px solid rgba(255, 179, 2, 0.25);
}

.trial-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trial-cta__actions .trial-btn {
  flex: 1 1 200px;
  max-width: 280px;
}

/* ── Floating buttons ── */
.page-trial .floating-contact {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-trial .floating-contact a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease;
}

.page-trial .floating-contact a:hover {
  transform: translateY(-3px);
}

.page-trial .floating-contact .btn-whatsapp { background: #128C7E; }
.page-trial .floating-contact .btn-telegram { background: #0088cc; }

.page-trial .floating-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.page-trial .back-to-top-wrapper.back-to-top-btn-show {
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(max(24px, env(safe-area-inset-bottom)) + 124px);
  z-index: 999;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .trial-hero__img-wrap {
    margin-top: 28px;
    max-width: 480px;
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .trial-hero__actions {
    flex-direction: column;
  }

  .trial-hero__actions .trial-btn {
    width: 100%;
  }

  .trial-hero__img-wrap.d-lg-block {
    display: none !important;
  }

  .trial-cta__actions .trial-btn {
    max-width: none;
    width: 100%;
  }
}
