/* Free Trial Scheduling Page */
:root {
  --trial-bg: #f6f7f9;
  --trial-surface: #ffffff;
  --trial-border: rgba(15, 26, 43, 0.08);
  --trial-text: #0f1a2b;
  --trial-text-soft: rgba(15, 26, 43, 0.72);
  --trial-blue: #2f56c9;
  --trial-blue-dark: #173493;
  --trial-cyan: #22b8cf;
  --trial-shadow: 0 18px 50px rgba(15, 26, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, var(--trial-bg) 100%);
  color: var(--trial-text);
}

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

 a {
  color: inherit;
}

.trial-page {
  min-height: 100vh;
}

.trial-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 251, 255, 0.88);
  border-bottom: 1px solid rgba(15, 26, 43, 0.06);
}

.trial-topbar__inner,
.trial-main,
.trial-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.trial-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.trial-brand img {
  width: 180px;
  height: auto;
}

.trial-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trial-link,
.trial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.trial-link {
  color: var(--trial-text-soft);
}

.trial-link:hover,
.trial-link:focus-visible {
  color: var(--trial-text);
}

.trial-button {
  background: linear-gradient(135deg, var(--trial-blue) 0%, var(--trial-blue-dark) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 86, 201, 0.24);
}

.trial-button:hover,
.trial-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(47, 86, 201, 0.28);
}

.trial-main {
  padding: 44px 0 72px;
}

.trial-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(15, 26, 43, 0.05);
  color: var(--trial-text);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.trial-back-link:hover,
.trial-back-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(47, 86, 201, 0.18);
  box-shadow: 0 18px 36px rgba(15, 26, 43, 0.08);
  color: var(--trial-blue);
}

.trial-hero {
  position: relative;
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
  padding: 40px clamp(22px, 4vw, 44px);
  text-align: center;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(34, 184, 207, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(47, 86, 201, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,249,255,0.96) 100%);
  box-shadow: 0 24px 60px rgba(15, 26, 43, 0.08);
  overflow: hidden;
}

.trial-hero::before,
.trial-hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.7;
}

.trial-hero::before {
  width: 220px;
  height: 220px;
  top: -110px;
  right: -40px;
  background: rgba(47, 86, 201, 0.14);
}

.trial-hero::after {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: -30px;
  background: rgba(34, 184, 207, 0.14);
}

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

.trial-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 86, 201, 0.08);
  color: var(--trial-blue);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trial-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--trial-text);
}

.trial-hero p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--trial-text-soft);
  font-size: 1.05rem;
  line-height: 1.68;
  font-weight: 500;
}

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

.trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(15, 26, 43, 0.04);
  color: rgba(15, 26, 43, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}

.trial-pill i {
  color: var(--trial-blue);
}

.trial-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.trial-step {
  padding: 20px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(15, 26, 43, 0.05);
  text-align: left;
}

.trial-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(47, 86, 201, 0.1);
  color: var(--trial-blue);
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trial-step h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.trial-step p {
  margin: 0;
  color: var(--trial-text-soft);
  font-size: 0.93rem;
  line-height: 1.6;
  font-weight: 500;
}

.trial-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
}

.trial-panel,
.trial-scheduler {
  border: 1px solid var(--trial-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,255,0.98) 100%);
  box-shadow: var(--trial-shadow);
}

.trial-panel {
  padding: 26px;
}

.trial-panel__section + .trial-panel__section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 26, 43, 0.08);
}

.trial-panel h2,
.trial-scheduler h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.trial-panel p,
.trial-scheduler p {
  margin: 0;
  color: var(--trial-text-soft);
  font-size: 0.98rem;
  line-height: 1.62;
  font-weight: 500;
}

.trial-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.trial-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(15, 26, 43, 0.82);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 600;
}

.trial-list i {
  color: var(--trial-blue);
  margin-top: 2px;
}

.trial-note {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(47, 86, 201, 0.08), rgba(34, 184, 207, 0.06));
  border: 1px solid rgba(47, 86, 201, 0.1);
}

.trial-note strong {
  font-size: 0.96rem;
  line-height: 1.35;
}

.trial-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 800;
  color: var(--trial-blue);
  text-decoration: none;
}

.trial-scheduler {
  overflow: hidden;
}

.trial-scheduler__top {
  padding: 28px 24px 18px;
  border-bottom: 1px solid rgba(15, 26, 43, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,255,0.94) 100%);
}

.trial-scheduler__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(47, 86, 201, 0.08);
  color: var(--trial-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.trial-scheduler__detail {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(47, 86, 201, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.trial-scheduler__detail strong {
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--trial-text);
}

.trial-scheduler__detail span {
  color: var(--trial-text-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
}

.trial-scheduler__frame {
  padding: 10px;
  background: #eef4ff;
}

.trial-scheduler__shell {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 26, 43, 0.08);
}

.trial-scheduler iframe {
  display: block;
  width: 100%;
  min-height: 860px;
  border: 0;
  background: #fff;
}

.trial-scheduler__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 24px 24px;
}

.trial-scheduler__meta {
  display: grid;
  gap: 5px;
}

.trial-scheduler__meta span {
  color: var(--trial-text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 600;
}

.trial-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(47, 86, 201, 0.16);
  background: #fff;
  color: var(--trial-blue);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
}

.trial-secondary-button:hover,
.trial-secondary-button:focus-visible {
  background: rgba(47, 86, 201, 0.04);
}

.trial-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.trial-assurance__card {
  padding: 18px 18px 16px;
  border: 1px solid var(--trial-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(15, 26, 43, 0.04);
}

.trial-assurance__card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
}

.trial-assurance__card p {
  margin: 0;
  color: var(--trial-text-soft);
  font-size: 0.92rem;
  line-height: 1.58;
  font-weight: 500;
}

.trial-footer {
  padding: 0 0 36px;
}

.trial-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 26, 43, 0.08);
  color: rgba(15, 26, 43, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
}

@media (max-width: 980px) {
  .trial-layout,
  .trial-steps,
  .trial-scheduler__details {
    grid-template-columns: 1fr;
  }

  .trial-assurance {
    grid-template-columns: 1fr;
  }

  .trial-scheduler iframe {
    min-height: 780px;
  }
}

@media (max-width: 640px) {
  .trial-topbar__inner {
    min-height: 70px;
  }

  .trial-brand img {
    width: 150px;
  }

  .trial-topbar__actions {
    gap: 8px;
  }

  .trial-link,
  .trial-button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .trial-main {
    padding: 30px 0 56px;
  }

  .trial-back-link {
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .trial-hero {
    padding: 30px 18px;
    border-radius: 26px;
  }

  .trial-hero p {
    font-size: 0.98rem;
    text-align: justify;
    text-align-last: left;
    text-wrap: pretty;
    hyphens: auto;
  }

  .trial-step {
    padding: 18px 16px 16px;
  }

  .trial-panel,
  .trial-scheduler__top,
  .trial-scheduler__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .trial-panel {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .trial-scheduler__frame {
    padding: 8px;
  }

  .trial-scheduler iframe {
    min-height: 720px;
  }
}
