body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* Reserve scrollbar gutter to avoid width shift on first paint */
@supports (scrollbar-gutter: stable) {
  html {
    scrollbar-gutter: stable;
  }
}
@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

header.hero {
  background: linear-gradient(180deg, #fbfbfb 0%, #cccccc 100%);
  overflow: hidden;
}

.banner-container {
  display: flex;
  background-color: #001f3f;
  color: #fff;
  text-align: left;
  padding: 10px 0px;
  font-size: 1rem;
  font-weight: bold;
  z-index: 1;
  position: relative;
}

.banner {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
}

.title-banner {
  display: flex;

  color: #fff !important;
}

.title-banner h1 {
  font-size: 2.3rem;
  margin: auto;
}

h1 {
  margin: 0;
}

p {
  font-weight: 300;
  color: #555;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 15px;
}

nav a:hover {
  text-decoration: underline;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
}

.btn-primary {
  font-size: 1.1em;
  padding: 0.8em 2em;
  border-radius: 2em;
  background: linear-gradient(90deg, #2a3a5e 0%, #1bbf83 100%);
  background-size: 200%;
  background-position: 0%;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(40, 80, 180, 0.1);
  border: none;
  transition: background-position 0.7s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover,
.btn-primary:focus {
  background-position: 100%;
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  font-size: 1.1em;
  padding: 0.8em 2em;
  border-radius: 2em;
  background: transparent;
  color: #1bbf83;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #1bbf83;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: rgba(27, 191, 131, 0.1);
  color: #1bbf83;
  text-decoration: none;
}

.btn-secondary:focus-visible {
  outline: 3px solid rgba(27, 191, 131, 0.35);
  outline-offset: 2px;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: row;
  padding: 40px 50px;
  height: 100%;
  /* max-height: 450px; */
  max-height: 530px;
  max-width: 1180px;
  margin: auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content .highlight {
  color: #000;
  font-weight: bold;
}

.hero-text {
  margin: 0px auto;
  max-width: 660px;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.hero-text p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  color: #8f8f8f !important;
  margin-top: 1rem;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #333;
}

.hero-image img {
  max-width: 350px;
  position: relative;
  top: 60px;
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.2));
  transform: scale(1.75);
}

.how-it-works-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  padding-bottom: 40px;
}

.how-it-works {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
  max-width: 1024px;
}

.how-it-works h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.how-it-works p {
  font-size: 1.3rem;
}

.steps {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 30%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.step-icon img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 0;
}

.step p {
  font-size: 1rem;
  color: #555;
}

footer {
  text-align: center;
  padding: 10px 0;
  margin-top: 75px;
  background: rgba(154, 146, 143, 1);
  color: #fff !important;
}

footer p {
  color: #fff !important;
}

.step-info:nth-child(odd) {
  background-color: #e0e0e0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.reverse {
  flex-direction: row-reverse !important;
}

.step-content {
  display: flex;
  flex-direction: row;
  max-width: 1024px;
}

.try-on-info {
  margin: 0 auto;
}

.info-images {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.info-images img {
  width: 512px;
  height: auto;
  border-radius: 8px;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta-buttons .btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.end-info {
  text-align: center;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 1024px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

.end-info .cta-buttons {
  margin-top: 15px;
}

.end-info .cta-text {
  margin-bottom: 10px;
}

.social-media {
  text-align: center;
  margin: 2rem 0;
  padding: 0 1rem;
}

.social-media h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  word-wrap: break-word;
}

.social-media p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 40px;
  height: 40px;
}

.cta-text-container {
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.cta-buttons .btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #0073e6;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Local spacing group for hero CTAs on inner pages without changing .btn-primary gradient */
.hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

ctabuttons .btn-primary:hover {
  background-color: #005bb5;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1rem 2rem;
}

.step-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0px;
}

.step-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.step-content.reverse {
  flex-direction: row-reverse;
}

.info-images img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(1px 4px 4px rgba(0, 0, 0, 0.1));
}

.info-text {
  max-width: 455px;
  margin-left: 15px;
}

.info-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.info-text p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
}

.step-info + .step-info {
  margin-top: 3rem;
}

.button-64 {
  align-items: center;
  background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button-64:active,
.button-64:hover {
  outline: 0;
}

.button-64 span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 25px;
  transition: 300ms;
}

.button-64:hover span {
  background: none;
}

.footer {
  background-color: #001f3f;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
}

.footer-content h2 {
  font-size: 1.5rem;
}

.footer-content p {
  font-size: 1rem;
}

.footer-content a {
  margin-left: 10px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: auto 0 auto 10px;
}

.footer-copyright {
  font-size: 1rem;
  margin: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 30px;
  height: 30px;
}

.standout-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3em 0 2em 0;
  background: linear-gradient(90deg, #f0f4ff 0%, #e6f7fa 100%);
  border-radius: 1.5em;
  box-shadow: 0 6px 32px 0 rgba(40, 80, 180, 0.08);
  padding: 2.5em 1em;
}

.trial-support-card {
  display: flex;
  align-items: center;
  gap: 2em;
  max-width: 800px;
  width: 100%;
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 16px 0 rgba(40, 80, 180, 0.07);
  padding: 2em 2.5em;
}

.trial-support-icon img {
  width: 64px;
  height: 64px;
  background: #e6f7fa;
  border-radius: 50%;
  padding: 0.7em;
  box-shadow: 0 2px 8px 0 rgba(40, 80, 180, 0.1);
}

.trial-support-content h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #2a3a5e;
  font-weight: 600;
}

.trial-offer {
  font-size: 1.15em;
  margin-bottom: 0.5em;
}

.highlight-offer {
  color: #1bbf83;
  font-weight: 600;
  background: #e6f7fa;
  border-radius: 0.4em;
  padding: 0.1em 0.5em;
  margin-right: 0.3em;
}

.trial-support-text {
  font-size: 1.08em;
  margin-bottom: 1.2em;
  color: #3d4a6e;
}

.trial-support-btn {
  font-size: 1.2em;
  padding: 0.8em 2em;
  border-radius: 2em;
  background: linear-gradient(90deg, #2a3a5e 0%, #1bbf83 100%);
  background-size: 200%;
  background-position: 0%;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(40, 80, 180, 0.1);
  border: none;
  transition: background-position 0.7s ease;
  text-decoration: none;
  display: inline-block;
}

.trial-support-btn:hover,
.trial-support-btn:focus {
  background-position: 100%;
  color: #fff;
  text-decoration: none;
}

.responsive-video {
  position: relative;
  margin: 0 auto;
  max-width: 1035px;
  height: 580px;
  padding: 15px;
}

.responsive-video iframe {
  width: 100%;
  height: 100%;
}

#banner-cta {
  display: none;
}

@media (min-width: 769px) and (max-width: 1026px) {
  .hero-content {
    max-height: 630px;
  }
}

@media (max-width: 768px) {
  #header-cta {
    display: none;
  }

  #banner-cta {
    display: block;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .trial-support-card {
    display: block;
  }

  .button-64 {
    font-size: 24px;
    min-width: 196px;
  }

  .hero-content {
    max-height: 100%;
  }

  .hero-text {
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1.4rem !important;
  }

  .hero-image img {
    display: none;
  }

  .title-banner h1 {
    font-size: 1.5rem;
    margin: auto;
  }

  .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .step-icon img {
    max-width: 80px;
    margin-bottom: 10px;
  }

  .banner-container {
    padding: 10px;
    text-align: center;
  }

  /* Header banner: stack title and nav, center links, allow wrapping */
  .banner {
    flex-direction: column;
    gap: 8px;
    padding: 8px 14px;
  }
  .title-banner {
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .navbar {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  .nav-links {
    justify-content: center;
    gap: 12px;
  }
  .nav-links li {
    margin: 0;
  }
  /* Override inline nowrap on small screens so items can wrap */
  .nav-links .shopify-link {
    white-space: normal !important;
  }
  .title-banner h1 {
    font-size: 1.35rem;
  }

  .banner-container .title {
    font-size: 1.5rem;
  }

  .navbar .nav-links {
    padding: 0;
  }

  .navbar .nav-links li {
    margin: 5px 0;
  }

  .btn-primary {
    font-size: 1.3rem;
    padding: 8px 12px;
  }

  .step-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
    background-color: #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
  }

  .step-content {
    display: flex;
    flex-direction: column !important;
    width: 100%;
    box-sizing: border-box;
  }

  .info-images img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .info-text {
    width: 100%;
  }

  .info-text h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .info-text p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .step-info.reverse {
    flex-direction: column !important;
  }

  .step-content {
    flex-direction: column;
  }

  .step-content.reverse {
    flex-direction: column;
  }

  .info-images img {
    width: 80%;
  }

  .responsive-video {
    max-width: 100%;
    /* Full width on mobile */
    max-height: none;
    /* Allow height to adjust naturally on smaller screens */
    height: 240px;
  }
}

@media (max-width: 480px) {
  .title-banner h1 {
    font-size: 1.2rem;
  }
  .btn-primary {
    font-size: 1.05rem;
    padding: 8px 14px;
  }
}

/* ------------------ Shopify inner page wide layout overrides ------------------ */
.shopify-page .hero-content {
  max-width: 1320px;
}
.shopify-page .how-it-works {
  max-width: 1320px;
}
.shopify-page .step-content {
  max-width: 1320px;
}

/* Wider video + proper aspect ratio */
.shopify-page .responsive-video {
  max-width: 1320px;
  aspect-ratio: 16/9;
  height: auto;
  padding: 0;
}
.shopify-page .responsive-video iframe {
  width: 100%;
  height: 100%;
}

/* Horizontal FAQ cards on desktop */
.shopify-page .faq-section .steps {
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.shopify-page .faq-section .steps .step {
  width: calc(33.333% - 28px);
  min-width: 260px;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .shopify-page .faq-section .steps .step {
    width: calc(50% - 28px);
  }
}
@media (max-width: 680px) {
  .shopify-page .faq-section .steps .step {
    width: 100%;
  }
}

/* ------------------ New Footer Redesign ------------------ */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.site-footer {
  background: radial-gradient(
    circle at 22% 18%,
    #123a61 0%,
    #052a41 48%,
    #031726 100%
  );
  color: #e4f9fb;
  position: relative;
  margin-top: 4rem;
  --accent: #1bbf83;
  --link: #a9f6d9;
  --link-hover: #e6fff7;
  font-size: 0.92rem;
}
.site-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.35;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 46px 60px;
  align-items: start;
}
.footer-col {
  min-width: 0;
}
.footer-heading {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
}
.footer-col.about .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}
.footer-col.about .logo svg {
  display: block;
}
.footer-col.about .tagline {
  margin: 0;
  text-align: center;
  width: 100%;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.2rem;
  background: linear-gradient(90deg, #1bbf83, #6dffd8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.social-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 0.25rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(2px);
  transition:
    background 0.35s,
    transform 0.4s,
    box-shadow 0.35s;
  position: relative;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.4);
}
.social-link img,
.social-link svg {
  filter: brightness(0) invert(1);
  width: 22px;
  height: 22px;
  transition: transform 0.4s;
}
.social-link:hover {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.08)
  );
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.55);
}
.social-link:hover img,
.social-link:hover svg {
  transform: scale(1.08);
}
.social-link.youtube {
  background: rgba(255, 0, 0, 0.15);
}
.social-link.youtube:hover {
  background: rgba(255, 0, 0, 0.25);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3;
}
.footer-link .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--link);
  transition:
    background 0.3s,
    color 0.3s,
    box-shadow 0.3s;
}
.footer-link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #38e6a8);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.footer-link:hover:before {
  width: 100%;
}
.footer-link:hover {
  color: var(--link-hover);
}
.footer-link:hover .icon {
  background: linear-gradient(135deg, var(--accent), #38e6a8);
  color: #042133;
  box-shadow: 0 0 0 3px rgba(27, 191, 131, 0.25);
}

.shopify-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.shopify-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #052a41;
  background: linear-gradient(90deg, var(--accent), #52ffc8);
  padding: 0.3rem 0.55rem 0.28rem;
  border-radius: 999px;
  box-shadow: 0 2px 6px -2px rgba(27, 191, 131, 0.55);
}
.shopify-mini-badge img {
  filter: brightness(0) invert(1);
}
.shopify-inline-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.mini-link {
  font-size: 0.68rem;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: var(--link);
  text-decoration: none;
  padding: 0.32rem 0.55rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  transition:
    background 0.25s,
    color 0.25s;
}
.mini-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 18px 0 0;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.footer-bottom:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.4;
  pointer-events: none;
}
.copyright {
  font-size: 0.7rem;
  font-weight: 400;
  color: #b6ced1;
  letter-spacing: 0.5px;
}
.footer-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #041d33;
  background: linear-gradient(120deg, var(--accent), #3fe3a9 45%, #57ffd6 100%);
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px -4px rgba(27, 191, 131, 0.5);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.footer-cta .arrow {
  transition: transform 0.35s;
}
.footer-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 28px -6px rgba(27, 191, 131, 0.65);
}
.footer-cta:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 820px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .site-footer {
    text-align: center;
  }
  .footer-col.about .footer-brand {
    align-items: center;
  }
  .footer-col.about .tagline {
    max-width: 240px;
  }
  .footer-link:before {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-link:hover:before {
    width: 70%;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    padding-top: 22px;
  }
  .footer-cta {
    margin: 0 auto;
  }
  .social-row {
    justify-content: center;
  }
  .shopify-inline {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-link:before,
  .footer-link .icon,
  .footer-cta,
  .social-link {
    transition: none !important;
  }
}

/* ================== Extracted & Consolidated CSS From Inline <style> Blocks ================== */
/* Utility classes created while migrating inline styles */
.note-line {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.hero-content--tall {
  max-height: 530px;
}
.cta-icon {
  height: 1.7em;
  vertical-align: middle;
  margin-right: 0.6em;
  filter: brightness(0) invert(1);
}
.list-left {
  text-align: left;
  margin: 0 auto;
  max-width: 480px;
}
.m-auto {
  margin: auto;
}
.fw-600 {
  font-weight: 600;
}
.mt-1 {
  margin-top: 1rem;
}

/* Header adjustments so we can drop repeated inline styles */
.title-banner {
  align-items: center;
  margin-right: auto;
}
.title-banner h1 {
  line-height: 1.1;
  font-weight: 700;
}
.title-banner h1.small {
  font-size: 2rem;
}

/* Before/After slider component (moved from index.html & virtual-try-on) */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 12px;
  background: #f6f7f8;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.05);
  max-height: 480px;
}
.ba-slider:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, #ececec 25%, transparent 25%),
    linear-gradient(-45deg, #ececec 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ececec 75%),
    linear-gradient(-45deg, transparent 75%, #ececec 75%);
  background-size: 40px 40px;
  background-position:
    0 0,
    0 20px,
    20px -20px,
    -20px 0;
}
.ba-slider .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.ba-before {
  z-index: 3;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.12s ease-out;
}
.ba-after {
  z-index: 1;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: ew-resize;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle:before {
  content: "\2194";
  font-size: 30px;
  color: #555;
  transform: translateY(-2px);
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.25);
  left: 50%;
  transform: translateX(-1px);
  z-index: 4;
}
.ba-caption {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 6px;
  color: #555;
}
@media (max-width: 640px) {
  .ba-slider {
    max-width: 240px;
  }
  .ba-handle {
    width: 40px;
    height: 40px;
  }
  .ba-handle:before {
    font-size: 26px;
  }
}

/* Pricing page (scoped) */
body.pricing-page {
  background: linear-gradient(135deg, #f6f7fb 0%, #e9f3ff 100%);
}
body.pricing-page header.pricing-header {
  text-align: center;
  padding: 3em 1em 1.5em;
}
body.pricing-page .main-title {
  color: #22304a;
  font-size: 2.6em;
  font-weight: 700;
  margin-bottom: 0.3em;
  letter-spacing: -1px;
}
body.pricing-page .subtitle {
  color: #5a6a85;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0.5em;
}
body.pricing-page .pricing-container {
  margin: 0 auto 3em;
  padding: 2em 1em;
  display: flex;
  flex-direction: row;
  gap: 2em;
  justify-content: center;
  flex-wrap: nowrap;
}
body.pricing-page .pricing-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(40, 80, 180, 0.07);
  padding: 2.5em 2em;
  flex: 1 1 300px;
  max-width: 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 2px solid transparent;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border 0.2s;
}
body.pricing-page .pricing-card.popular {
  border: 2px solid #1bbf83;
  box-shadow: 0 8px 32px 0 rgba(40, 80, 180, 0.13);
  z-index: 1;
}
body.pricing-page .badge-popular {
  position: absolute;
  top: -18px;
  right: 18px;
  background: #1bbf83;
  color: #fff;
  font-size: 0.95em;
  font-weight: 600;
  padding: 0.4em 1.1em;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(40, 80, 180, 0.1);
  letter-spacing: 0.5px;
}
body.pricing-page .plan-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #22304a;
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}
body.pricing-page .plan-price {
  font-size: 2.4em;
  font-weight: 700;
  color: #1bbf83;
  margin-bottom: 0.2em;
  letter-spacing: -1px;
}
body.pricing-page .plan-period {
  font-size: 1.1em;
  color: #888;
  margin-bottom: 1.2em;
}
body.pricing-page .plan-divider {
  width: 100%;
  border: none;
  border-top: 1px solid #eee;
  margin: 1em 0 1.2em;
}
body.pricing-page .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8em;
  color: #2a3a5e;
  font-size: 1.08em;
  width: 100%;
}
body.pricing-page .plan-features li {
  margin-bottom: 0.8em;
  padding-left: 2em;
  position: relative;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
body.pricing-page .plan-features li:before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  min-width: 0.5em;
  min-height: 0.5em;
  margin-right: 1em;
  margin-left: -2em;
  background: #222;
  border-radius: 50%;
  vertical-align: middle;
  box-sizing: border-box;
}
body.pricing-page .plan-cta {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}
body.pricing-page .plan-cta a {
  background: #1bbf83;
  color: #fff;
  font-weight: 600;
  padding: 1em 0;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  font-size: 1.13em;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px 0 rgba(40, 80, 180, 0.07);
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
body.pricing-page .plan-cta a:hover {
  background: #169e6b;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 rgba(40, 80, 180, 0.13);
}
@media (max-width: 1100px) {
  body.pricing-page .pricing-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  body.pricing-page .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  body.pricing-page .pricing-card {
    max-width: 400px;
    width: 100%;
  }
}

/* Privacy & Billing pages (scoped) */
body.privacy-page main,
body.billing-page main {
  max-width: 700px;
  margin: 3em auto;
  background: #fff;
  border-radius: 1em;
  padding: 2em 2em 3em;
  box-shadow: 0 2px 16px 0 rgba(40, 80, 180, 0.07);
  font-size: 1.08em;
}
body.privacy-page h1,
body.privacy-page h2,
body.billing-page h1,
body.billing-page h2 {
  color: #2a3a5e;
}
body.billing-page h1 {
  margin-top: 0;
}
body.billing-page h2 {
  margin-top: 2em;
  font-size: 1.2em;
}
body.billing-page ul {
  margin: 0.6em 0 1.1em 1.2em;
}
body.billing-page li {
  margin-bottom: 0.55em;
}
body.billing-page .tag {
  display: inline-block;
  background: #e9f3ff;
  color: #1bbf83;
  font-size: 0.6em;
  letter-spacing: 0.5px;
  padding: 0.35em 0.6em;
  border-radius: 1em;
  font-weight: 600;
  margin-left: 0.6em;
  vertical-align: middle;
}
body.billing-page a.back-link {
  color: #1bbf83;
  text-decoration: none;
}
body.billing-page a.back-link:hover {
  text-decoration: underline;
}
@media (max-width: 680px) {
  body.privacy-page main,
  body.billing-page main {
    padding: 1.2em 1em 2.2em;
  }
}

/* FAQ page extracted styles */
.faq-container {
  max-width: 800px;
  margin: 3em auto;
  background: #fff;
  border-radius: 1em;
  padding: 2em 2em 3em;
  box-shadow: 0 2px 16px 0 rgba(40, 80, 180, 0.07);
  font-size: 1.08em;
}
.faq-title {
  color: #2a3a5e;
  text-align: center;
  margin-bottom: 1.5em;
  letter-spacing: 0.01em;
  font-weight: 600;
}
.faq-list {
  margin: 0;
  padding: 0;
}
.faq-item {
  border-bottom: 1px solid #e6eaf3;
  padding: 1.2em 0;
  transition: background 0.2s;
  background: #fafbfc;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item dt {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.15em;
  font-weight: 600;
  color: #22304a;
  transition: color 0.2s;
  outline: none;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
.faq-item dt:hover,
.faq-item.open dt,
.faq-item dt:focus {
  color: #1bbf83;
}
.faq-item dd {
  display: none;
  margin-left: 0;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #2a3a5e;
  font-size: 1em;
  line-height: 1.7;
  background: #fff;
  border-radius: 0.5em;
  padding: 1em 1.2em;
  box-shadow: 0 1px 8px 0 rgba(40, 80, 180, 0.04);
}
.faq-item.open dd {
  display: block;
  animation: fadeIn 0.3s;
}
.faq-item ul {
  margin: 0.5em 0 0.5em 1.2em;
  padding: 0;
  list-style: disc;
}
@media (max-width: 600px) {
  .faq-container {
    padding: 1em 0.5em 2em;
  }
  .faq-item dd {
    padding: 0.8em 0.7em;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Virtual Try-On page extracted styles (scoped by existing .shopify-page body class) */
.shopify-page .quick-guides-nav {
  max-width: 1180px;
  margin: 22px auto 10px;
  padding: 0 26px;
}
.shopify-page .quick-guides-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}
.shopify-page .quick-guides-nav ul > li {
  display: flex;
}
.shopify-page .quick-guides-nav .qg-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dbe3ea;
  padding: 14px 16px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
  position: relative;
  flex: 1;
  height: 100%;
}
.shopify-page .quick-guides-nav .qg-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(27, 191, 131, 0.15),
    rgba(42, 58, 94, 0.08)
  );
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.shopify-page .quick-guides-nav .qg-card:hover,
.shopify-page .quick-guides-nav .qg-card:focus-visible {
  border-color: #1bbf83;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  outline: none;
  transform: translateY(-2px);
}
.shopify-page .quick-guides-nav .qg-card:hover:before,
.shopify-page .quick-guides-nav .qg-card:focus-visible:before {
  opacity: 1;
}
.shopify-page .quick-guides-nav .qg-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #102a3b;
  letter-spacing: 0.3px;
}
.shopify-page .quick-guides-nav .qg-desc {
  font-size: 0.75rem;
  color: #4a6271;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .shopify-page .quick-guides-nav {
    padding: 0 18px;
    margin-top: 18px;
  }
  .shopify-page .quick-guides-nav ul {
    gap: 14px;
  }
}
.shopify-page header.hero {
  background: linear-gradient(180deg, #fbfbfb, #ccc);
  overflow: hidden;
}
.shopify-page .hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #000;
}
.shopify-page .hero-subtitle {
  font-size: 1.15rem;
  margin: 0 0 32px;
  color: #555;
}
@media (max-width: 768px) {
  .shopify-page .hero-content {
    flex-direction: column;
    padding: 32px 22px;
  }
  .shopify-page .hero-title {
    font-size: 2.1rem;
  }
  .shopify-page .hero-image img {
    display: none;
  }
}
/* Tutorial & cards */
.shopify-page .tutorial-section {
  background: #fff;
  margin-top: 10px;
  border-top: 1px solid #e3e7eb;
}
.shopify-page .tutorial-section .how-it-works {
  max-width: 1000px;
  text-align: left;
}
.shopify-page .tutorial-section h2 {
  margin-top: 0;
  text-align: center;
}
.shopify-page .tutorial-section h3 {
  margin-top: 42px;
  scroll-margin-top: 90px;
}
.shopify-page .tutorial-toc {
  background: #f5f8fa;
  border: 1px solid #dbe2e8;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 18px 0 32px;
}
.shopify-page .tutorial-toc ol {
  margin: 0;
  padding-left: 18px;
  columns: 3;
  column-gap: 40px;
  list-style-position: outside;
}
@media (max-width: 800px) {
  .shopify-page .tutorial-toc ol {
    columns: 1;
  }
}
.shopify-page .tutorial-toc a {
  color: #0b314b;
  text-decoration: none;
  font-weight: 500;
}
.shopify-page .tutorial-toc a:hover,
.shopify-page .tutorial-toc a:focus {
  text-decoration: underline;
}
.shopify-page .tutorial-section p.lead {
  text-align: center;
}
.shopify-page .tutorial-section ul,
.shopify-page .tutorial-section ol,
.shopify-page .tutorial-section dl {
  padding-left: 22px;
  line-height: 1.55;
  margin: 0 0 1.1rem;
}
.shopify-page .tutorial-section pre.inline-snippet {
  background: #0f2537;
  color: #d1f5ee;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  overflow: auto;
}
.shopify-page .checklist-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 12px 0 28px;
}
.shopify-page .checklist-grid .card {
  background: #f6faf9;
  border: 1px solid #d4ece4;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.shopify-page .tip-box,
.shopify-page .warn-box {
  border-left: 4px solid #1bbf83;
  background: #f1fbf6;
  padding: 12px 14px;
  border-radius: 6px;
  margin: 18px 0;
}
.shopify-page .warn-box {
  border-left-color: #d37a00;
  background: #fff7ea;
}
.shopify-page .faq-mini dt {
  font-weight: 600;
  margin-top: 14px;
}
.shopify-page .faq-mini dd {
  margin: 4px 0 0;
}
.shopify-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.shopify-page .tutorial-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 32px;
}
.shopify-page .t-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.shopify-page .step-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  background: #1bbf83;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 9px 2px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}
.shopify-page .t-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f2f6f9, #e2e9ef);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.08) inset,
    0 2px 4px rgba(0, 0, 0, 0.04);
}
.shopify-page .t-card h3 {
  margin: 6px 0 4px;
  font-size: 1.05rem;
}
.shopify-page .t-card ul,
.shopify-page .t-card ol {
  padding-left: 18px;
  text-align: left;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}
.shopify-page .t-small {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: auto;
}
.shopify-page .callout {
  background: #f5fbf8;
  border: 1px solid #cfeee3;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  text-align: left;
  line-height: 1.4;
}
.shopify-page .tutorial-section h2 + p.lead {
  text-align: center;
  margin: 8px auto 6px;
}
.shopify-page .accordion {
  margin-top: 34px;
}
.shopify-page .accordion h3 {
  text-align: center;
  font-size: 1.55rem;
  margin: 0 0 18px;
}
.shopify-page .acc-item {
  background: #fff;
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  margin: 0 0 12px;
  overflow: hidden;
}
.shopify-page .acc-btn {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.shopify-page .acc-btn:after {
  content: "+";
  margin-left: auto;
  font-size: 1.1rem;
  transition: transform 0.25s;
}
.shopify-page .acc-item.open .acc-btn:after {
  transform: rotate(45deg);
}
.shopify-page .acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fcfdfd;
  line-height: 1.55;
  font-size: 0.88rem;
  padding: 0 18px;
}
.shopify-page .acc-item.open .acc-panel {
  padding: 12px 18px 16px;
}
.shopify-page .metric-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 14px;
}
.shopify-page .metric {
  background: #fff;
  border: 1px solid #e2e8ee;
  padding: 14px 16px 16px;
  border-radius: 12px;
  text-align: center;
}
.shopify-page .metric h4 {
  margin: 4px 0 6px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #294255;
}
.shopify-page .metric p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}
@media (min-width: 1400px) {
  .shopify-page .tutorial-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
}
