/* Clone-style CSS (approx from screenshot) */

:root {
  --black: #0a0a0a;
  --ink: #111;
  --bg: #ffffff;
  --muted: #3a3a3a;
  --line: #d8d8d8;
  --green: #73f0b1;
  --green-2: #63e7a5;
  --navy: #0a1630;
  --container: 1040px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Hero */
.hero {
  padding: 18px 0 0;
}

.hero__inner {
  text-align: center;
}

.proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9d9d9, #bdbdbd);
  border: 2px solid #fff;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-logo {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 2px solid #fff;
  object-fit: cover;
  background: #fff;
  margin-left: -8px;
}

.avatar-logo:first-child {
  margin-left: 0;
}

.proof__big {
  font-weight: 700;
  font-size: 12px;
}

.proof__small {
  font-size: 11px;
  color: #444;
  margin-top: 2px;
}

.attention {
  margin: 14px auto 18px;
  width: min(820px, 100%);
  background: var(--green);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.attention__label {
  font-weight: 900;
}

.headline {
  margin: 0 auto;
  width: min(980px, 100%);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
}

.subhead {
  margin: 10px auto 16px;
  width: min(980px, 100%);
  font-size: 16px;
  line-height: 1.35;
  color: #333;
  font-style: italic;
}

#my-cal-inline-45-min {
  margin: 18px auto 0;
  width: min(980px, 100%);
  height: 760px;
  border: 1px solid var(--line);
  background: #fff;
}

/* Simple legal pages */
.legal {
  padding: 28px 0 0;
}

.legal__inner {
  text-align: left;
  max-width: 860px;
}

.legal__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.legal__muted {
  margin: 8px 0 18px;
  color: #555;
  font-size: 13px;
}

.legal h2 {
  margin: 20px 0 8px;
  font-size: 16px;
}

.legal h3 {
  margin: 16px 0 6px;
  font-size: 14px;
}

.legal ul {
  margin: 6px 0 14px;
  padding-left: 18px;
}

.legal li {
  margin: 6px 0;
}

.legal p {
  margin: 0 0 12px;
  line-height: 1.55;
  color: #222;
}

.legal hr {
  border: 0;
  border-top: 1px solid #e7e7e7;
  margin: 22px 0;
}

/* Fold layout (video + form) */
.fold {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
  padding: 10px 0 0;
}

.vsl {
  border: 1px solid var(--line);
  background: #fff;
}

.vsl__topbar {
  height: 22px;
  background: #f0f0f0;
  border-bottom: 1px solid #e4e4e4;
}

.vsl__content {
  position: relative;
  height: 290px;
  background: linear-gradient(180deg, #fafafa, #efefef);
  overflow: hidden;
}

.vsl__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 70%, rgba(0, 0, 0, 0.05)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0 18px, rgba(0, 0, 0, 0.01) 18px 36px);
  opacity: 0.45;
}

.vsl__avatar {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8d8d8, #bcbcbc);
  border: 4px solid #fff;
  z-index: 2;
}

.vsl__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #e30000;
  z-index: 3;
}

.vsl__play > span {
  position: absolute;
  left: 38px;
  top: 26px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 32px solid #fff;
}

.vsl__caption {
  padding: 10px 0 12px;
  font-size: 12px;
  color: #111;
  text-align: center;
}

.lead {
  border: 1px solid var(--line);
  padding: 12px 12px 14px;
  background: #fff;
}

.field {
  display: block;
  text-align: left;
  margin-bottom: 10px;
}

.field__label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.field__input {
  width: 100%;
  height: 34px;
  border: 1px solid #cfcfcf;
  padding: 0 10px;
  outline: none;
  background: #fff;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone__flag {
  width: 40px;
  height: 34px;
  border: 1px solid #cfcfcf;
  background:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(90deg, #c8102e 0 32%, #fff 32% 68%, #c8102e 68% 100%) border-box;
  position: relative;
}

.phone__flag::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 12px;
  height: 12px;
  background: #c8102e;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.85;
}

.phone__input {
  flex: 1;
}

.cta {
  width: 100%;
  height: 58px;
  border: 0;
  background: var(--green-2);
  font-weight: 800;
  font-size: 24px;
  cursor: pointer;
  margin-top: 6px;
}

.fineprint {
  font-size: 11px;
  color: #444;
  text-align: center;
  margin-top: 8px;
}

/* Footer */
.bottom {
  margin-top: auto;
  background: var(--bg);
  padding: 28px 0;
  color: var(--muted);
}

.bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.bottom__center {
  text-align: center;
  font-size: 11px;
}

.bottom__left,
.bottom__right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.email-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}

.bottom a {
  color: inherit;
  text-decoration: none;
}

.bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .fold {
    grid-template-columns: 1fr;
  }
}

