:root {
  --page-bg: #f9fafb;
  --white: #ffffff;
  --text: #565c79;
  --muted: #a6aabb;
  --line: #e8e9ed;
  --purple: #5d4ef5;
  --purple-soft: #f1efff;
  --orange: #f59e0b;
  --orange-soft: #fff6e9;
  --green: #00a36a;
  --green-soft: #eafaf4;
  --nav-button: #585e7e;
  --radius-card: 18px;
  --font: "Inter", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--page-bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-frame {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--page-bg);
  border: 0;
}

.page-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  height: 75px;
  background: var(--white);
  border-bottom: 1px solid #f0f1f3;
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.55px;
  white-space: nowrap;
}
.main-nav {
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.16px;
}
.main-nav > a:not(.header-cta):hover { color: #373e5c; }
.home-icon-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-right: -12px;
}
.home-icon-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-with-arrow > span {
  display: inline-block;
}
.nav-chevron {
  width: 9px;
  height: 6px;
  flex: 0 0 auto;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(1px);
}

.header-cta {
  font-family: "Urbanist", Arial, Helvetica, sans-serif;
  min-width: 105px;
  height: 43px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--nav-button);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: transform .2s ease, background-color .2s ease;
}
.header-cta:hover { transform: translateY(-1px); background: #484e70; }

.mobile-menu-toggle { display: none; }

.setup-main {
  min-height: 824px;
  padding: 40px 0 58px;
  background: var(--page-bg);
}

.hero-section { text-align: center; }
.setup-badge {
  min-width: 290px;
  height: 34px;
  margin: 0 auto 27px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  background: #f3fbf7;
  font-size: 16px;
  font-weight: 600;
}
.badge-play {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--green);
}

h1, h2, p { margin-top: 0; }
.hero-section h1 {
  margin: 0 auto 25px;
  font-size: 56px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.9px;
  color: var(--text);
}
.hero-title-main, .hero-title-accent { display: inline; }
.hero-title-accent { color: var(--green); }
.hero-copy {
  margin: 0 auto 44px;
  font-size: 20px;
  line-height: 1.55;
  color: #606681;
  letter-spacing: .05px;
}

.recommended-box {
  width: 596px;
  min-height: 138px;
  margin: 0 auto 19px;
  padding: 20px 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 1px 3px rgba(57, 63, 88, .03);
}
.recommended-label {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.15px;
}
.recommended-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.app-card {
  min-height: 67px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  border-radius: 13px;
  background: #f6f7f8;
  transition: transform .2s ease, background-color .2s ease;
}
.app-card:hover { transform: translateY(-2px); background: #f2f4f6; }
.app-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
}
.app-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-icon-orange { background: var(--orange); }
.app-icon-green { background: var(--green); }
.app-copy { min-width: 0; margin-left: 14px; }
.app-copy strong, .app-copy small { display: block; }
.app-copy strong { margin-bottom: 3px; font-size: 15px; font-weight: 700; white-space: nowrap; }
.app-copy small { color: #7f849b; font-size: 12px; font-weight: 500; white-space: nowrap; }
.hot-pill {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid #e4e6ea;
  border-radius: 5px;
  color: #5c627f;
  background: #fafbfc;
  font-size: 11px;
  font-weight: 700;
}

.options-grid {
  width: 960px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}
.option-card {
  position: relative;
  min-height: 237px;
  padding: 24px 20px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 2px rgba(45, 50, 75, .02);
}
.most-popular {
  position: absolute;
  top: 13px;
  right: 15px;
  height: 25px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-size: 8.5px;
  font-weight: 700;
}
.option-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.option-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.option-purple .option-icon { color: var(--purple); background: var(--purple-soft); }
.option-orange .option-icon { color: var(--orange); background: var(--orange-soft); }
.option-green .option-icon { color: var(--green); background: var(--green-soft); }
.option-card h2 {
  margin-bottom: 17px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.35px;
}
.option-card h2 .price { color: var(--orange); font-weight: 600; }
.option-card p {
  min-height: 18px;
  margin-bottom: 15px;
  color: #a6aabb;
  font-size: 14px;
  line-height: 1.5;
  white-space: nowrap;
}
.option-button {
  width: 100%;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 17pxpx;
  font-weight: 600;
  transition: transform .2s ease, filter .2s ease;
}
.option-button span { font-size: 20px; font-weight: 400; line-height: 1; transform: translateY(-1px); }
.option-button:hover { transform: translateY(-2px); filter: brightness(.97); }
.option-purple .option-button { background: var(--purple); }
.option-orange .option-button { background: var(--orange); }
.option-green .option-button { background: var(--green); }

.trust-row {
  margin-top: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 52px;
  color: #a8acbb;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.2px;
}
.verification-box{
  width:100%;
  background:#edfbf5;
  border-radius:12px;
  padding:20px 15px;
  text-align:center;
  box-sizing:border-box;
  margin: 15px 0px 10px 0px;
}
.verification-box h3{
  margin:0;
  color:#52657d;
  font-size:14px;
  font-weight:500;
}
.verification-phone{
  margin:12px 0 12px;
  color:#61748c;
  font-size:11px;
}
.otp-inputs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:12px 0;
}
.otp-inputs input{
  width:32px;
  height:38px;
  background:#fff;
  border:1px solid #e3e8e6;
  border-radius:6px;
  text-align:center;
  font-size:16px;
  outline:none;
}
.otp-inputs input:focus{
  border-color:#00a86b;
}
.resend-code{
  border:0;
  background:none;
  color:#00a86b;
  font-size:12px;
  cursor:pointer;
  padding:4px;
}

/* Tablet */
@media (max-width: 1020px) {
  .header-inner { max-width: 100%; padding-left: 24px; padding-right: 24px; }
  .page-container { padding-left: 24px; padding-right: 24px; }
  .main-nav { gap: 18px; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .header-inner { width: 100%; max-width: none; padding-left: 20px; padding-right: 20px; }
  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }
  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 5px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  .mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: absolute;
    z-index: 20;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 22px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    background: #fff;
    border-top: 1px solid #f0f1f3;
    border-bottom: 1px solid #e9ebef;
    box-shadow: 0 12px 26px rgba(49, 55, 80, .08);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.header-cta) { padding: 11px 7px; }
  .home-icon-link { display: none; }
  .header-cta { width: 100%; margin-top: 7px; }

  .setup-main { padding: 37px 0 52px; }
  .hero-section h1 { padding: 0 24px; font-size: 36px; }
  .hero-copy { padding: 0 28px; }
  .desktop-only { display: none; }
  .recommended-box { width: calc(100% - 48px); }
  .options-grid { grid-template-columns: 1fr; max-width: 520px; }
  .option-card p { white-space: normal; }
  .trust-row { gap: 22px; flex-wrap: wrap; padding: 0 24px; }
}

/* Mobile target based on supplied reference */
@media (max-width: 600px) {
  body { background: var(--page-bg); }
  .site-frame { min-height: 100vh; background: var(--page-bg); }
  .site-header { height: 65px; }
  .header-inner { width: 100%; padding-left: 21px; padding-right: 21px; }
  .page-container { padding-left: 0; padding-right: 0; }
  .site-logo { font-size: 18px; letter-spacing: -.4px; }
  .main-nav { top: 65px; }

  .setup-main { padding: 38px 0 43px; }
  .setup-badge {
    min-width: 0;
    width: calc(100% - 72px);
    max-width: 295px;
    height: 33px;
    margin-bottom: 29px;
    padding: 0 12px;
    gap: 8px;
    font-size: 10.5px;
    white-space: nowrap;
  }
  .badge-play {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 8px;
  }

  .hero-section h1 {
    width: calc(100% - 34px);
    max-width: 365px;
    margin-bottom: 20px;
    padding: 0;
    font-size: 31px;
    line-height: 1.16;
    letter-spacing: -1.25px;
  }
  .hero-title-main, .hero-title-accent { display: block; }
  .hero-copy {
    width: calc(100% - 44px);
    max-width: 350px;
    margin-bottom: 32px;
    padding: 0;
    font-size: 12.5px;
    line-height: 1.58;
  }

  .recommended-box {
    width: calc(100% - 42px);
    max-width: 350px;
    min-height: 0;
    margin-bottom: 18px;
    padding: 18px 16px 16px;
    border-radius: 16px;
  }
  .recommended-label { margin-bottom: 14px; font-size: 9px; }
  .recommended-grid { grid-template-columns: 1fr; gap: 10px; }
  .app-card { min-height: 62px; padding: 10px 11px; border-radius: 12px; }
  .app-icon { width: 37px; height: 37px; flex-basis: 37px; }
  .app-copy { margin-left: 12px; }
  .app-copy strong { font-size: 14px; }
  .app-copy small { font-size: 12px; }
  .hot-pill { padding: 4px 6px; font-size: 12px; }

  .options-grid {
    width: calc(100% - 42px);
    max-width: 350px;
    gap: 17px;
  }
  .option-card {
    min-height: 226px;
    padding: 22px 19px 20px;
    border-radius: 16px;
  }
  .most-popular { top: 12px; right: 13px; height: 23px; padding: 0 11px; font-size: 12px; }
  .option-icon { width: 52px; height: 52px; margin-bottom: 16px; }
  .option-card h2 { margin-bottom: 14px; font-size: 16px; }
  .option-card p { margin-bottom: 14px; font-size: 12px; line-height: 1.45; }
  .option-button { height: 46px; font-size: 14px; }

  .trust-row {
    width: calc(100% - 42px);
    margin: 35px auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    font-size: 14px;
    text-align: center;
  }
  .trust-row span:last-child { grid-column: 1 / -1; }
}


@media (max-width: 360px) {
  .setup-badge { width: calc(100% - 38px); font-size: 12px; }
  .hero-section h1 { font-size: 28px; }
  .recommended-box, .options-grid { width: calc(100% - 28px); }
}


/* Free trial multi-step flow */
.wizard-main{
  min-height:calc(100vh - 75px);
  background:var(--page-bg);
  padding:36px 0 54px;
}
.wizard-container{
  width:100%;
  max-width:940px;
  margin:0 auto;
  padding:0 20px;
}
.trial-pill{
  width:max-content;
  margin:0 auto 22px;
  padding:8px 19px;
  border:1.5px solid #36c88a;
  border-radius:999px;
  background:#f2fbf7;
  color:#0faa68;
  font-size:16px;
  font-weight:600;
  line-height:1;
}
.wizard-progress{
  position:relative;
  max-width:700px;
  margin:0 auto 28px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  align-items:start;
}
.wizard-progress:before{
  content:none;
}
.progress-step{
  position:relative;
  z-index:1;
  text-align:center;
  color:#6a718d;
}
.progress-step:not(:last-child)::after{
  content:'';
  position:absolute;
  z-index:-1;
  top:19px;
  left: calc(50% + 24px);
  width: calc(90% - 36px);
  height:2px;
  background:#e7eaee;
  transition:background-color .25s ease;
}
.progress-step.done:not(:last-child)::after{
  background:#0ca666;
}
.progress-step .step-dot{
  width:40px;
  height:40px;
  margin:0 auto 8px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid #e3e6ec;
  background:#fff;
  color:#6b718f;
  font-size:18px;
  font-weight:700;
  line-height:1;
}
.progress-step .step-dot svg{
  width:13px;
  height:13px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.progress-step b{
  display:block;
  font-size:16px;
  line-height:1.2;
  font-weight:600;
}
.progress-step.done b,
.progress-step.active b{ color:#0ca666; }
.progress-step.done .step-dot,
.progress-step.active .step-dot{
  border-color:#0ca666;
  background:#0ca666;
  color:#fff;
}
.progress-step.done .step-dot .step-number{ display:none; }
.progress-step.done .step-dot .step-check{ display:block; }
.progress-step .step-check{ display:none; }
.wizard-card{
  width:100%;
  max-width:900px;
  margin:0 auto;
  padding:38px 30px 30px;
  border:1px solid #e8ebef;
  border-radius:18px;
  background:#fff;
  box-shadow:0 1px 2px rgba(62,74,104,.03);
}
.wizard-step{ display:none; }
.wizard-step.active{ display:block; }
.wizard-card h1{
  margin:0 0 10px;
  color:#565d7d;
  font-size:32px;
  line-height:1.18;
  letter-spacing:-.6px;
  font-weight:700;
}
.wizard-card>p{
  margin:0 0 24px;
  color:#afb4c1;
  font-size:18px;
  line-height:1.55;
}
.wizard-card label{
  display:block;
  margin:0 0 9px;
  color:#5a617d;
  font-size:17px;
  font-weight:600;
}
.field-group + .field-group{ margin-top:22px; }
.field-icon,
.plain-field,
.select-box,
.security-box{
  position:relative;
  border:1px solid #e8ebef;
  border-radius:11px;
  background:#fff;
}
.field-icon input,
.plain-input,
.select-box select{
  width:100%;
  height:46px;
  border:0;
  outline:0;
  background:transparent;
  color:#686f8b;
  font-size:18px;
  font-family:var(--font);
}
.field-icon input::placeholder,
.plain-input::placeholder{ color:#bec3cd; }
.field-icon svg,
.plain-field svg,
.tip-box svg,
.security-icon svg,
.secured-inline svg,
.card-check svg,
.choice-ico svg,
.app-icon-box svg,
.instruction-icon svg,
.step-dot svg,
.back-link svg{
  display:block;
}
.field-icon svg{
  position:absolute;
  left:10px;
  top:50%;
  width:18px;
  height:18px;
  transform:translateY(-50%);
  stroke:#7d849e;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.field-icon input{ padding:0 14px 0 38px; }
.phone-row{
  display:grid;
  grid-template-columns:85px 1fr;
  gap:12px;
}
.select-box:after{
  content:'';
  position:absolute;
  right:14px;
  top:50%;
  width:8px;
  height:8px;
  margin-top:-6px;
  border-right:1.6px solid #78809a;
  border-bottom:1.6px solid #78809a;
  transform:rotate(45deg);
  pointer-events:none;
}
.select-box select{
  appearance:none;
  padding:0 30px 0 14px;
}
.wizard-primary{
  width:100%;
  height:60px;
  margin-top:26px;
  border:0;
  border-radius:999px;
  background:#0aaa63;
  color:#fff;
  font-size:19px;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s ease,background-color .2s ease;
}
.wizard-primary:hover{ transform:translateY(-1px); background:#08985a; }
.wizard-footer-link{
  width:max-content;
  margin:23px auto 0;
}
.wizard-footer-link a,
.wizard-footer-link button{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:0;
  border:0;
  background:none;
  color:#b1b6c2;
  font-size:19px;
  font-weight:500;
  cursor:pointer;
}
.wizard-footer-link svg{
  width:19px;
  height:19px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.choice-grid{
  display:grid;
  gap:25px;
}
.device-grid{ grid-template-columns:repeat(4,1fr); }
.app-grid{ grid-template-columns:repeat(3,1fr); }
.choice-card{
  position:relative;
  min-height:92px;
  padding:16px 12px 14px;
  border:1px solid #e6eaf0;
  border-radius:12px;
  background:#fff;
  color:#5b627e;
  font-family:var(--font);
  cursor:pointer;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.choice-card:hover{ border-color:#cfd6e3; }
.choice-card.selected{
  border-color:#0ca666;
  background:#f1faf5;
  box-shadow:0 0 0 1px #0ca666 inset;
}
.choice-card .card-check{
  position:absolute;
  top:7px;
  right:7px;
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#0ca666;
  color:#fff;
  opacity:0;
}
.choice-card.selected .card-check{ opacity:1; }
.card-check svg{
  width:10px;
  height:10px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.choice-ico,
.app-icon-box{
  width:40px;
  height:40px;
  margin:0 auto;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:#eff1f5;
  color:#707894;
}
.choice-card.selected .choice-ico,
.choice-card.selected .app-icon-box.green{ background:#0ca666; color:#fff; }
.choice-ico svg,
.app-icon-box svg{
  width:21px;
  height:21px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.choice-card strong,
.choice-card small,
.choice-card .choice-title{
  display:block;
  text-align:center;
}
.choice-card strong,
.choice-card .choice-title{
  margin-top:11px;
  font-size:18px;
  line-height:1.3;
  font-weight:600;
}
.choice-card small{
  margin-top:3px;
  color:#a8aebc;
  font-size:9px;
  font-weight:500;
}
.choice-card .tag-badge{
  position:absolute;
  top:-10px;
  left:50%;
  transform:translateX(-50%);
  min-width:101px;
  height:20px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:13px;
  font-weight:400;
  letter-spacing:.4px;
}
.tag-orange{ background:#fff2e3; color:#f2a20a; }
.tag-purple{ background:#ecebff; color:#6d60ff; }
.app-grid .choice-card{ min-height:106px; }
.app-grid .choice-card.wide-selected{ background:#eaf6ef; }
.app-icon-box.green{ background:#0ca666; color:#fff; }
.app-icon-box.navy{ background:#646b8d; color:#fff; }
.app-icon-box.orange{ background:#f4a40b; color:#fff; }
.app-icon-box.purple{ background:#5e4ff0; color:#fff; }
.setup-layout{
  display:grid;
  grid-template-columns:1.1fr .95fr;
  gap:22px;
  align-items:start;
}
.instruction-list{
  margin:0;
  padding:0;
  max-width: 350px;
  list-style:none;
}
.instruction-item{
  display:grid;
  grid-template-columns:35px 1fr;
  gap:35px;
  position:relative;
  padding-bottom:36px;
}
.instruction-item:not(:last-child):after{
  content:'';
  position:absolute;
  left:22px;
  top:43px;
  bottom:0;
  width:1px;
  background:#eceff3;
}
.instruction-icon{
  width:45px;
  height:45px;
  display:grid;
  place-items:center;
  border-radius:10px;
}
.instruction-icon svg{
  width:21px;
  height:21px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.icon-purple{ background:#efefff; color:#6b61ff; }
.icon-green{ background:#e9f9ef; color:#10aa62; }
.icon-orange{ background:#fff4e5; color:#f0a10a; }
.instruction-content em{
  display:block;
  margin-bottom:3px;
  color:#9aa0b1;
  font-style:normal;
  font-size:14px;
  font-weight:700;
  letter-spacing:.45px;
}
.instruction-content strong{
  display:block;
  margin-bottom:4px;
  color:#58607e;
  font-size:19px;
  line-height:1.24;
  font-weight:700;
}
.instruction-content p{
  margin:0;
  color:#9fa5b6;
  font-size:16px;
  line-height:1.6;
}
.video-box{
  position:relative;
  overflow:hidden;
  border-radius:13px;
  min-height:262px;
  background:#203149;
}
.video-box img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.video-play{
  position:absolute;
  left:50%;
  top:50%;
  width:40px;
  height:40px;
  margin:-20px 0 0 -20px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.16);
}
.video-play:before{
  content:'';
  margin-left:2px;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  border-left:10px solid #34425f;
}
.tip-box{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-top:20px;
  padding:16px 16px 15px;
  border-radius:12px;
  background:#fbf3e8;
}
.tip-box svg{
  width:25px;
  height:25px;
  flex:0 0 16px;
  margin-top:1px;
  stroke:#f0a10a;
  fill:none;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.tip-box p{
  margin:0;
  color:#727891;
  font-size:20px;
  line-height:1.38;
}
.tip-box strong{ color:#59607e; }
.tip-box b{ color:#59607e; }
.plain-field svg{
  position:absolute;
  left:14px;
  top:50%;
  width:14px;
  height:14px;
  transform:translateY(-50%);
  stroke:#626a85;
  fill:none;
  stroke-width:2;
}
.plain-field .plain-input{ padding:0 14px 0 36px; }
.field-help{
  margin:10px 0 0;
  color:#8f96aa;
  font-size:16px;
  line-height:1.4;
}
.security-box{
  margin-top:20px;
  padding:18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#f7f8fa;
}
.security-copy{
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.security-icon{
  width:16px;
  height:16px;
  flex:0 0 16px;
  margin-top:2px;
  color:#5d6480;
}
.security-icon svg{
  width:100%;
  height:100%;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.security-copy strong{
  display:block;
  color:#5c627e;
  font-size:18px;
  line-height:1.2;
  font-weight:700;
}
.security-copy span{
  display:block;
  margin-top:2px;
  color:#8f96aa;
  font-size:16px;
}
.security-tick{
  width:18px;
  height:18px;
  display:grid;
  place-items:center;
  border-radius:3px;
  background:#0ca666;
  color:#fff;
}
.security-tick svg{
  width:10px;
  height:10px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.secured-inline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  margin-top:18px;
  color:#8f96aa;
  font-size:15px;
}
.secured-inline svg{
  width:18px;
  height:18px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.total-due-card{
  width:100%;
  background:#00a86b;
  border-radius:12px;
  padding:18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-sizing:border-box;
  color:#fff;
  margin-bottom: 25px;
}

.total-due-content{
  display:flex;
  flex-direction:column;
}

.total-label{
  font-size:10px;
  font-weight:600;
  letter-spacing:.5px;
  opacity:.9;
  margin-bottom:4px;
}

.total-due-card h2{
  margin:0;
  font-size:32px;
  line-height:1;
  font-weight:700;
  color:#fff;
}

.total-due-card p{
  margin:8px 0 0;
  font-size:12px;
  font-weight:500;
  color:#fff;
}

.card-icon{
  width:24px;
  height:24px;
  opacity:.7;
}

.card-icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:#fff;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
@media (max-width: 767px){
  .wizard-main{ padding:24px 0 42px; }
  .wizard-container{ padding:0 16px; }
  .trial-pill{ margin-bottom:18px; }
  .wizard-progress{ max-width:none; }
  .progress-step b{ font-size:11px; }
  .wizard-card{ padding:28px 18px 22px; }
  .wizard-card h1{ font-size:22px; }
  .wizard-card>p{ margin-bottom:20px; }
  .phone-row{ grid-template-columns:92px 1fr; }
  .device-grid,.app-grid{ grid-template-columns:repeat(2,1fr); }
  .setup-layout{ grid-template-columns:1fr; }
  .video-box{ min-height:220px; }
  .choice_device_chromecast{
    display: none;
  }
}
@media (max-width: 480px){
  .wizard-main{ padding-top:22px; }
  .wizard-container{ padding:0 12px; }
  .trial-pill{ font-size:12px; padding:8px 16px; }
  .wizard-progress{ grid-template-columns:repeat(5,1fr); gap:2px; }
  .progress-step .step-dot{ width:26px; height:26px; margin-bottom:7px; font-size:12px; }
  .progress-step:not(:last-child)::after{ top:12px; left:calc(50% + 16px); width:calc(100% - 32px); }
  .progress-step b{ font-size:10px; }
  .wizard-card{ padding:24px 14px 18px; border-radius:16px; }
  .wizard-card h1{ font-size:20px; }
  .wizard-card>p{ font-size:14px !important; }
  .phone-row{ grid-template-columns:80px 1fr; gap:8px; }
  .choice-grid{ gap:10px; }
  .device-grid,.app-grid{ grid-template-columns:repeat(2,1fr); }
  .choice-card{ min-height:88px; padding:12px 8px; }
  .app-grid .choice-card{ min-height:125px; }
  .instruction-content strong{ font-size:14px; }
  .tip-box p{ font-size:12px; }
}

/* Free trial completion screen */
.success-card{
  display:none;
  padding:30px 30px 30px;
  text-align:center;
}
.success-card.active{ display:block; }
.success-icon{
  width:54px;
  height:54px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#e4f5ed;
  color:#0ca666;
}
.success-icon svg{
  width:28px;
  height:28px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.success-card h1{
  margin-bottom:10px;
  text-align:center;
  font-size:32px;
  letter-spacing:-.45px;
}
.success-card>p{
  margin-bottom:22px;
  text-align:center;
  font-size:18px;
}
.activation-details{
  width:100%;
  margin-top:2px;
  padding:23px 23px 15px;
  border-radius:12px;
  background:#f5f6f7;
  text-align:left;
}
.activation-details h2{
  margin:0 0 11px;
  color:#59617f;
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:.79px;
}
.activation-row{
  min-height:59px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border-bottom:1px solid #e3e6e9;
  color:#6b728e;
  font-size:18px;
}
.activation-row:last-child{ border-bottom:0; }
.activation-row strong{
  color:#77809c;
  font-size:18px;
  font-weight:400;
  text-align:right;
}
.activation-row #success-mac{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  letter-spacing:.3px;
}
.activation-row .active-status{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#0ca666;
  font-weight:700;
}
.active-status i{
  width:6px;
  height:6px;
  display:block;
  border-radius:50%;
  background:#0ca666;
}
.success-footer{ display:none; }
.success-footer.active{ display:block; }
.success-footer button{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:0;
  border:0;
  background:none;
  color:#b1b6c2;
  font-size:19px;
  font-family:var(--font);
  font-weight:500;
  cursor:pointer;
}
.success-footer svg{
  width:19px;
  height:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

@media (max-width:600px){
  .success-card{ padding:25px 16px 20px; }
  .success-icon{ width:50px; height:50px; margin-bottom:16px; }
  .activation-details{ padding:18px 16px 10px; }
  .activation-row{ min-height:48px; font-size:14px; }
  .activation-row strong{ font-size:14px; }
}

/* Security verification checkbox update */
.security-checkbox{display:flex;align-items:center;cursor:pointer;}
.security-checkbox input{display:none;}
.security-checkbox span{width:20px;height:20px;border-radius:5px;background:#00a76f;display:flex;align-items:center;justify-content:center;}
.security-checkbox svg{width:13px;height:13px;fill:none;stroke:#fff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;}

/* Free trial mobile responsive improvements */
@media(max-width:600px){
 .wizard-container{padding:0 12px;}
 .wizard-card{width:100%;padding:22px 14px;}
 .app-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
 .app-grid .choice-card:last-child{grid-column:1/-1;}
 .choice-card{min-height:96px;}
 .security-box{padding:16px 14px;border-radius:12px;}
 .security-copy{gap:10px;}
 .security-copy strong{font-size:16px;}
 .security-copy span{font-size:13px;}
 .wizard-primary{height:52px;
  font-size: 15px;
 }
 .wizard-footer-link a, .wizard-footer-link button{
  font-size: 15px;
 }
 .choice-card strong, .choice-card .choice-title{
  font-size: 14px;
 }

}

/* Security verification final desktop update */
.security-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    padding:18px 20px;
    border-radius:12px;
}
.security-copy{
    display:flex;
    align-items:center;
    gap:12px;
}
.security-icon{
    width:18px;
    height:18px;
    flex-shrink:0;
}
.security-icon svg{
    width:18px;
    height:18px;
}
.security-copy strong{
    font-size:16px;
    line-height:20px;
}
.security-copy span{
    font-size:14px;
    line-height:20px;
}
.security-checkbox{
    width:18px;
    height:18px;
    cursor:pointer;
    flex-shrink:0;
}
.security-checkbox input{
    display:none;
}
.security-checkbox span{
    width:18px;
    height:18px;
    border-radius:5px;
    border:1.5px solid #d7deea;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s ease;
}
.security-checkbox svg{
    width:11px;
    height:11px;
    fill:none;
    stroke:#fff;
    stroke-width:2.5;
    opacity:0;
}
.security-checkbox input:checked + span{
    background:#00a86b;
    border-color:#00a86b;
}
.security-checkbox input:checked + span svg{
    opacity:1;
}

@media(max-width:600px){
    .security-box{
        padding:16px;
    }
    .security-copy strong{
        font-size:15px;
    }
    .security-copy span{
        font-size:13px;
    }
}

/* Wizard selection states */
#wizard-main, #wizard-main_2, #setup-device { display: none; }
#wizard-main.active, #wizard-main_2.active, #setup-device.active { display: block; }


/* Wizard switcher fix */
#wizard-main,
#wizard-main_2,
#setup-device{display:none;}
#wizard-main.active,
#wizard-main_2.active,
#setup-device.active{display:block;}

/* Shop Flow IPTV v1.1 form validation / AJAX states */
.sfiptv-hp{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.sfiptv-form-message{display:none;margin:12px 0 14px;padding:11px 13px;border-radius:10px;font-size:14px;line-height:1.45;font-weight:600}
.sfiptv-form-message.is-error{display:block;background:#fff1f2;border:1px solid #fecdd3;color:#be123c}
.sfiptv-form-message.is-success{display:block;background:#ecfdf5;border:1px solid #a7f3d0;color:#047857}
.sfiptv-form-message.is-info{display:block;background:#eff6ff;border:1px solid #bfdbfe;color:#1d4ed8}
input.is-invalid,.field-icon.is-invalid,.plain-field.is-invalid,.select-box.is-invalid{border-color:#e11d48!important;box-shadow:0 0 0 3px rgba(225,29,72,.08)!important}
.security-box.is-invalid{border-color:#e11d48!important;box-shadow:0 0 0 3px rgba(225,29,72,.08)!important}
.wizard-primary.is-loading,.resend-code.is-loading{opacity:.7;cursor:wait}
.wizard-primary:disabled,.resend-code:disabled{cursor:not-allowed}
.otp-inputs input.is-invalid{border-color:#e11d48!important}

/* Shop Flow IPTV v1.2.0: international phone input */
.sfiptv-phone-input-wrap{
  position:relative;
  width:100%;
}
.sfiptv-phone-input-wrap .iti{
  width:100%;
  display:block;
  --iti-border-color:#e8ebef;
  --iti-hover-color:#f5f7fa;
  --iti-dropdown-bg:#fff;
}
.sfiptv-phone-input-wrap .sfiptv-intl-phone,
.sfiptv-phone-input-wrap .iti__tel-input{
  width:100%;
  height:48px;
  border:1px solid #e8ebef;
  border-radius:11px;
  outline:0;
  background:#fff;
  color:#686f8b;
  font-size:18px;
  font-family:var(--font);
  box-sizing:border-box;
}
.sfiptv-phone-input-wrap .iti__selected-country-primary{
  border-radius:10px 0 0 10px;
}
.sfiptv-phone-input-wrap .iti__country-container{
  border-right:1px solid #eef0f3;
}
.sfiptv-phone-input-wrap .iti__dropdown-content{
  z-index:99999;
  border-radius:10px;
  box-shadow:0 12px 30px rgba(15,23,42,.15);
}
.sfiptv-phone-input-wrap .iti__search-input{
  height:40px;
  border:1px solid #e8ebef;
  border-radius:8px;
  padding:0 10px;
  font-family:var(--font);
}
.sfiptv-phone-input-wrap.is-invalid .iti__tel-input,
.sfiptv-phone-input-wrap .iti__tel-input.is-invalid{
  border-color:#e11d48!important;
  box-shadow:0 0 0 3px rgba(225,29,72,.08)!important;
}
.sfiptv-phone-help{
  display:block;
  margin-top:7px;
  color:#9298aa;
  font-size:12px;
  line-height:1.4;
}
@media (max-width:480px){
  .sfiptv-phone-input-wrap .sfiptv-intl-phone,
  .sfiptv-phone-input-wrap .iti__tel-input{
    font-size:16px;
  }
}
