/* Self-hosted Google Font replacement (Spartan) */
@font-face{
  font-family:"Spartan";
  src:url("/public/fonts/spartan-latin-400.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Spartan";
  src:url("/public/fonts/spartan-latin-700.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

html{
  font-family:
    "Spartan",
    "Segoe UI Variable Text",
    "Segoe UI Variable",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif
}

.container{
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px){
  .container{
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* -------------------------------------------------------
   Core button styles (were previously in compiled CSS)
   ------------------------------------------------------- */
.button,
button.button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  min-height: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.button:focus,
button.button:focus{
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

/* Utility aliases used across templates */
.bg-orange{
  background-color: #ff7f50;
}
.bg-white{
  background-color: #ffffff;
}
.text-white{
  color: #ffffff;
}
.text-black{
  color: #000000;
}

.button.bg-white{
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.button.bg-orange{
  color: #ffffff;
}

.button.bg-orange:hover{
  background-color: #7e2afd;
}

.button-outlined{
  background-color: transparent;
  border-color:currentColor;
  border-width: 1px;
  border-style: solid;
}

[x-cloak]{
  display: none !important;
}

.header{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  height:80px;
  width:100%;
  position:fixed;
  z-index:999999;
  padding-left: 1rem;
  padding-right: 1rem
}

@media (min-width: 768px){
  .header{
    padding-left: 3rem;
  }
}

@media (min-width: 768px){
  .header{
    padding-right: 3rem;
  }
}

.header nav.header__nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative
}

.header nav.header__nav .hamburger{
  display: block;
  color: rgba(0, 0, 0, 1);
  mix-blend-mode: normal;
}

@media (min-width: 1024px){
  .header nav.header__nav .hamburger{
    display: none;
  }
}

/* External-link icon next to Documentation */
.nav-menu__external{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.4rem;
  opacity: 0.75;
}

/* Navbar (refactor): flat dropdown on mobile, 3-part desktop layout */
.header__brand{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.header__brand-text{
  font-weight: 400;
  color: rgba(0, 0, 0, 1);
  letter-spacing: -0.01em;
}

.header__nav-actions{
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__nav-links{
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-links--desktop{
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header__nav-link{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 400;
  text-decoration: none;
}

.header__nav-link:hover{
  color: #7e2afd;
}

.header__mobile-dropdown{
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 999998;
}

.header__nav-links--mobile{
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}

.header__nav-links--mobile .header__nav-link{
  padding: 0.75rem 0;
}

.header__mobile-cta{
  padding: 0.25rem 0 1rem 0;
}

@media (min-width: 1024px){
  .header__mobile-dropdown{
    display: none !important;
  }
}

.header .logo-wrapper{
  z-index:99999
}

.header .logo-wrapper .header__logo{
  height:33px;
  width:33px
}

.hero{
  position:relative;
  /* make vertical centering work + handle mobile viewport chrome */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background:#6a399b;
  background:linear-gradient(45deg, #6a399b 10%, #6a399b 10%, #499fd3 50%, #5c6af1 95%);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#6a399b", endColorstr="#5c6af1",GradientType=1 );
  overflow: hidden;
  justify-content: center
}

@media (min-width: 1024px){
  .hero{
    justify-content: center;
  }
}

.hero{
  /* keep hero content below fixed header on small screens */
  padding-top: 6rem;
}

@media (min-width: 1024px){
  .hero{
    padding-top: 5rem;
  }
}

.hero>.container{
  display: flex;
  flex-wrap: wrap-reverse
}

@media (min-width: 1024px){
  .hero>.container{
    flex-wrap: wrap;
  }
}

.hero>.container{
  /* make spacing predictable even if Tailwind utilities fail to load */
  gap: 2rem;
}

.hero>.container > div{
  /* ensure columns stack cleanly on mobile */
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 1024px){
  .hero>.container > div:first-child{
    flex: 0 0 40%;
    max-width: 40%;
  }
  .hero>.container > div:last-child{
    flex: 0 0 60%;
    max-width: 60%;
  }
}

.hero>.container{
  align-items: flex-start;
}

@media (min-width: 1024px){
  .hero>.container{
    align-items: center;
  }
}

.hero>.container{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hero .hero-img{
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero__media{
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.hero .container{
  z-index:10
}

.hero::before{
  content:"";
  display:block;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  background-image:url("/public/img/hero-bgi.png");
  background-size:cover
}

.overview{
  background-image:url("/public/img/overview-bgi.png");
  background-size:max(1070px, 50vw);
  background-position:50vw bottom;
  background-repeat:no-repeat;
  padding-top: 4rem;
  padding-bottom: 4rem
}

@media (min-width: 1024px){
  .overview{
    padding-top: 8rem;
  }
}

@media (min-width: 1024px){
  .overview{
    padding-bottom: 5rem;
  }
}

.overview ul{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width: 768px){
  .overview ul{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .overview ul{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.overview ul{
  gap: 1rem;
}

@media (min-width: 768px){
  .overview ul{
    gap: 3rem;
  }
}

.overview ul{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.difference{
  padding-bottom: 0px;
  padding-top: 4rem
}

@media (min-width: 1024px){
  .difference{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.difference>div{
  min-height:612px
}

@media (min-width: 1024px){
  .difference>div div{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.difference>div div{
  padding-top: 2rem;
  padding-bottom: 0px;
}

.quickstart{
  padding-bottom: 4rem
}

@media (min-width: 1024px){
  .quickstart{
    padding-bottom: 6rem;
  }
}

/* Quickstart: Embla carousel (progress style) */
.quickstart{
  background: linear-gradient(135deg, #f2fbf6 0%, #e6f7ee 100%);
}

.quickstart .quickstart-carousel{
  padding-bottom: 1rem;
}

.quickstart .embla--quickstart{
  position: relative;
  padding-left: 2.75rem;
  padding-right: 2.75rem;
}

@media (min-width: 1024px){
  .quickstart .embla--quickstart{
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}

.quickstart .embla--quickstart .embla__viewport{
  overflow: hidden;
}

.quickstart .embla--quickstart .embla__container{
  display: flex;
}

.quickstart .embla--quickstart .embla__slide{
  flex: 0 0 100%;
  min-width: 0;
}

.quickstart .quickstart-slide{
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(10, 70, 44, 0.12);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 20px 35px -25px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px){
  .quickstart .quickstart-slide{
    padding: 2rem;
  }
}

.quickstart .quickstart-slide__title{
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(10, 70, 44, 0.12);
}

.quickstart .quickstart-slide__number{
  color: #0a6b44;
}

.quickstart .quickstart-slide__body{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 768px){
  .quickstart .quickstart-slide__body{
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px){
  .quickstart .quickstart-slide__body{
    gap: 2rem;
  }
}

.quickstart .quickstart-slide__media figure{
  margin: 0;
}

.quickstart .quickstart-slide__media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
}

.quickstart .quickstart-slide__content{
  font-size: 17px;
}

.quickstart .quickstart-slide__content > *{
  margin-bottom: 1.5rem;
}

.quickstart .quickstart-slide__content > *:last-child{
  margin-bottom: 0;
}

.quickstart .quickstart-slide__content ul li{
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.quickstart .quickstart-slide__content ul li:last-child{
  margin-bottom: 0px;
}

.quickstart .quickstart-slide__content ul li::before{
  content:"";
  display: block;
  height: 0.3rem;
  width: 0.3rem;
  position: absolute;
  left: 0px;
  top: 0.55rem;
  background-color: #0a6b44;
  border-radius: 9999px;
}

.quickstart .embla--quickstart .embla__controls{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.quickstart .embla--quickstart .embla__button{
  pointer-events: auto;
  background: #0a6b44;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  padding: 0.75rem;
  color: #ffffff;
  box-shadow: 0 18px 35px -18px rgba(0, 0, 0, 0.65);
}

.quickstart .embla--quickstart .embla__button[disabled]{
  opacity: 0.35;
  cursor: not-allowed;
}

.quickstart .embla--quickstart .embla__button__svg{
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.quickstart .embla--quickstart .embla__progress{
  margin-top: 1rem;
  height: 0.35rem;
  background: rgba(10, 70, 44, 0.12);
  border-radius: 9999px;
  overflow: hidden;
}

.quickstart .embla--quickstart .embla__progress__bar{
  height: 100%;
  width: 100%;
  background: #0a6b44;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform 150ms ease;
}

.pricing{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  background:#5363f1;
  background:linear-gradient(-45deg, #5363f1 0%, #42a2d8 100%);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#5363f1", endColorstr="#42a2d8",GradientType=1 )
}

#download{
  background-color:#f8fafc
}

footer.footer{
  padding-left: 1rem;
  padding-right: 1rem
}

@media (min-width: 768px){
  footer.footer{
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

footer.footer{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  background:#5363f1;
  background:linear-gradient(45deg, #5363f1 0%, #42a2d8 100%);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#5363f1", endColorstr="#42a2d8",GradientType=1 );
}

footer.footer .footer__widget{
  display: flex;
  flex-wrap: wrap;
  padding-top: 3rem;
  padding-bottom: 3rem
}

@media (min-width: 1024px){
  footer.footer .footer__widget{
    padding-top: 7rem;
  }
}

@media (min-width: 1024px){
  footer.footer .footer__widget{
    padding-bottom: 6rem;
  }
}

footer.footer .footer__widget .widget{
  margin-bottom: 2rem
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget{
    margin-bottom: 0px;
  }
}

footer.footer .footer__widget .widget:last-child{
  margin-bottom: 0px
}

@media (min-width: 768px){
  footer.footer .footer__widget .widget:last-child{
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget:last-child{
    margin-bottom: 0px;
  }
}

footer.footer .footer__widget .widget .widget__title{
  font-size:19px
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget .widget__title{
    font-size: 17px;
  }
}

footer.footer .footer__widget .widget .widget__title{
  font-weight: 700;
  margin-bottom: 1rem;
}

footer.footer .footer__widget .widget ul.footer-menu{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

@media (min-width: 768px){
  footer.footer .footer__widget .widget ul.footer-menu{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

footer.footer .footer__widget .widget ul.footer-menu{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget ul.footer-menu{
    display: block;
  }
}

footer.footer .footer__widget .widget ul li{
  font-size:17px;
  padding-bottom: 0.5rem
}

footer.footer .colophon{
  min-height:80px;
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  font-size:14px;
  padding-bottom: 6rem
}

@media (min-width: 1024px){
  footer.footer .colophon{
    padding-bottom: 0px;
  }
}

footer.footer a:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 127, 80, var(--tw-text-opacity));
}

@media (min-width: 640px){
}

@media (min-width: 1280px){
}

@media (min-width: 1536px){
}

@media (min-width: 1536px){
}

@media (min-width: 1921px){
}

@media (min-width: 2541px){
}

/* SEO Sections Styles */

/* About Section */
.about {
    background-color: #ffffff;
}

.about .grid {
    display: grid;
}

.trust-indicators .trust-card {
    display: flex;
    flex-direction: column;
}

.trust-indicators .trust-card h3 {
    line-height: 1.3;
}

.trust-icon-wrapper {
    width: 2rem !important;
    height: 2rem !important;
    min-width: 2rem;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon {
    width: 1rem !important;
    height: 1rem !important;
    min-width: 1rem;
    min-height: 1rem;
    display: block;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    cursor: pointer;
    outline: none;
}

.faq-question:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

.faq-icon {
    transition: transform 0.3s ease;
    width: 1rem !important;
    height: 1rem !important;
    min-width: 1rem;
    min-height: 1rem;
    flex-shrink: 0;
    display: block;
}

.faq-answer {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Documentation Highlights Section */

/* Download button in footer */
.footer-download-item {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.footer-download-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

/* Highlight email in footer */
.footer-email-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-email-link:hover {
    color: inherit;
    text-decoration: none;
}

/* -------------------------------------------------------
   Migrated from app.custom.only.css (keep behavior identical)
   ------------------------------------------------------- */

/* Trust section (salient variant) */
.trust-indicators.trust-salient{
    background: #0F172B;
}

.trust-indicators.trust-salient h2,
.trust-indicators.trust-salient h3{
    color: #ffffff;
}

.trust-indicators.trust-salient .trust-subtitle{
    color: #94A3B8;
}

.trust-indicators.trust-salient .trust-card{
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.trust-indicators.trust-salient .trust-card:hover{
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.06) !important;
}

.trust-indicators.trust-salient .trust-card p{
    color: #CBD5E1;
}

.trust-indicators.trust-salient .trust-card p.text-gray-700{
    color: #CBD5E1;
}

.trust-indicators.trust-salient .trust-icon-wrapper{
    color: #E2E8F0;
}

.trust-indicators.trust-salient .trust-icon{
    stroke: currentColor;
}

.trust-indicators .trust-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Keep the smaller icon sizing currently applied by app.custom.only.css */
.trust-icon-wrapper {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem;
    min-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem;
    min-height: 1.25rem;
    display: block;
}

/* Footer email button (match current live look) */
.footer-email-link {
    color: #ffffff !important;
    border-color: #ffffff !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff !important;
    text-decoration: none;
}

/* Overview section (Is eCam for me?) - checklist blocks */
.overview-groups{
  display:flex;
  flex-direction:column;
  gap:2.25rem
}

@media (min-width: 1024px){
  .overview-groups{
    gap:3rem
  }
}

.overview-group-title{
  display:grid;
  grid-template-columns:20px 1fr;
  align-items:center;
  column-gap:0.75rem
}

.overview-group-icon{
  color:#6a399b;
  display:inline-flex;
  align-items:center;
  justify-content:center
}

.overview-checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:0.9rem
}

.overview-checklist-item{
  display:grid;
  grid-template-columns:1.25rem 1fr;
  column-gap:0.75rem;
  align-items:flex-start
}

.overview-check{
  color:#28a745;
  font-weight:700;
  font-size:1.1rem;
  line-height:1.5;
  margin-top:0.05rem;
  width:1.25rem;
  text-align:center
}

.overview-checklist-text{
  flex:1 1 auto;
  line-height:1.65
}

/* Alternate alignment (second block right-aligned) */
.overview-group--alt{
  /* Keep the block visually shifted to the right, but keep text left-aligned */
  align-self:stretch
}

@media (min-width: 1024px){
  .overview-group--alt{
    /* Keep aligned with the first block (no right shift) */
    align-self:stretch
  }
}

.overview-group--alt .overview-group-title{
  grid-template-columns:20px 1fr
}

.overview-group--alt .overview-group-icon{
  grid-column:auto;
  justify-self:start
}

.overview-group--alt .overview-group-title-text{
  grid-column:auto;
  justify-self:start
}

.overview-group--alt .overview-checklist-item{
  display:grid
}

.overview-group--alt .overview-check{
  grid-column:auto;
  justify-self:start
}

.overview-group--alt .overview-checklist-text{
  grid-column:auto;
  text-align:left
}

.overview-group--alt .overview-checklist{
  align-items:flex-start
}

/* Ensure "overview" titles stay left-aligned during responsive resizing (override inherited text-center) */
.overview-group,
.overview-group-title,
.overview-group-title-text,
.overview-checklist-text{
  text-align:left !important;
}

.overview-group-title-text{
  justify-self:start;
}

/* ---- merged from app.custom.only.css (previously loaded after app.css) ---- */

.button-outlined{
  background-color: transparent;
  border-color:currentColor;
  border-width: 1px
}

.header{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  height:80px;
  width:100%;
  position:fixed;
  z-index:999999;
  padding-left: 1rem;
  padding-right: 1.5rem
}

@media (min-width: 768px){
  .header{
    padding-left: 3rem;
  }
}

@media (min-width: 768px){
  .header{
    padding-right: 3rem;
  }
}

.header nav.header__nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center
}

.header nav.header__nav .hamburger{
  display: block
}

@media (min-width: 1024px){
  .header nav.header__nav .hamburger{
    display: none;
  }
}

.header nav.header__nav .hamburger{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  mix-blend-mode:difference;
}

.header .logo-wrapper{
  z-index:99999
}

.header .logo-wrapper .header__logo{
  height:33px;
  width:33px
}

.hero{
  position:relative;
  min-height: 100vh;
  background:#6a399b;
  background:linear-gradient(45deg, #6a399b 10%, #6a399b 10%, #499fd3 50%, #5c6af1 95%);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#6a399b", endColorstr="#5c6af1",GradientType=1 );
  overflow: hidden;
  justify-content: flex-start
}

@media (min-width: 1024px){
  .hero{
    justify-content: center;
  }
}

.hero{
  padding-top: 4rem;
}

@media (min-width: 1024px){
  .hero{
    padding-top: 5rem;
  }
}

.hero>.container{
  display: flex;
  /* Stable responsive layout:
     - mobile: image above text
     - desktop (lg): image beside text (to the right) */
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 2rem;
}

@media (min-width: 1024px){
  .hero>.container{
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.hero>.container{
  align-items: flex-start;
}

@media (min-width: 1024px){
  .hero>.container{
    align-items: center;
  }
}

/* Ensure hero columns size and order are deterministic */
.hero>.container > div{
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Mobile order: media first (above), text second */
.hero>.container > div:first-child{
  order: 2;
}
.hero>.container > .hero__media{
  order: 1;
}

@media (min-width: 1024px){
  .hero>.container > div:first-child{
    order: 1;
    flex: 0 0 40%;
    max-width: 40%;
  }
  .hero>.container > .hero__media{
    order: 2;
    flex: 0 0 60%;
    max-width: 60%;
  }
}

.hero>.container{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hero .hero-img{
  width:100%;
  max-width:100%
}

.hero .container{
  z-index:10
}

.hero::before{
  content:"";
  display:block;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  background-image:url("/public/img/hero-bgi.png");
  background-size:cover
}

.overview{
  background-image:url("/public/img/overview-bgi.png");
  background-size:max(1070px, 50vw);
  background-position:50vw bottom;
  background-repeat:no-repeat;
  padding-top: 4rem;
  padding-bottom: 4rem
}

@media (min-width: 1024px){
  .overview{
    padding-top: 8rem;
  }
}

@media (min-width: 1024px){
  .overview{
    padding-bottom: 5rem;
  }
}

.overview ul{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width: 768px){
  .overview ul{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .overview ul{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.overview ul{
  gap: 1rem;
}

@media (min-width: 768px){
  .overview ul{
    gap: 3rem;
  }
}

.overview ul{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.difference{
  padding-bottom: 0px;
  padding-top: 4rem
}

@media (min-width: 1024px){
  .difference{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.difference>div{
  min-height:612px
}

@media (min-width: 1024px){
  .difference>div div{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.difference>div div{
  padding-top: 2rem;
  padding-bottom: 0px;
}

.quickstart{
  padding-bottom: 4rem
}

@media (min-width: 1024px){
  .quickstart{
    padding-bottom: 6rem;
  }
}

.pricing{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  background:#5363f1;
  background:linear-gradient(-45deg, #5363f1 0%, #42a2d8 100%);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#5363f1", endColorstr="#42a2d8",GradientType=1 )
}

#download{
  background-color:#f8fafc
}

footer.footer{
  padding-left: 1rem;
  padding-right: 1rem
}

@media (min-width: 768px){
  footer.footer{
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

footer.footer{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  background:#5363f1;
  background:linear-gradient(45deg, #5363f1 0%, #42a2d8 100%);
  filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#5363f1", endColorstr="#42a2d8",GradientType=1 );
}

footer.footer .footer__widget{
  display: flex;
  flex-wrap: wrap;
  padding-top: 3rem;
  padding-bottom: 3rem
}

@media (min-width: 1024px){
  footer.footer .footer__widget{
    padding-top: 7rem;
  }
}

@media (min-width: 1024px){
  footer.footer .footer__widget{
    padding-bottom: 6rem;
  }
}

footer.footer .footer__widget .widget{
  margin-bottom: 2rem
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget{
    margin-bottom: 0px;
  }
}

footer.footer .footer__widget .widget:last-child{
  margin-bottom: 0px
}

@media (min-width: 768px){
  footer.footer .footer__widget .widget:last-child{
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget:last-child{
    margin-bottom: 0px;
  }
}

footer.footer .footer__widget .widget .widget__title{
  font-size:19px
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget .widget__title{
    font-size: 17px;
  }
}

footer.footer .footer__widget .widget .widget__title{
  font-weight: 700;
  margin-bottom: 1rem;
}

footer.footer .footer__widget .widget ul.footer-menu{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

@media (min-width: 768px){
  footer.footer .footer__widget .widget ul.footer-menu{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

footer.footer .footer__widget .widget ul.footer-menu{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
}

@media (min-width: 1024px){
  footer.footer .footer__widget .widget ul.footer-menu{
    display: block;
  }
}

footer.footer .footer__widget .widget ul li{
  font-size:17px;
  padding-bottom: 0.5rem
}

footer.footer .colophon{
  min-height:80px;
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  font-size:14px;
  padding-bottom: 6rem
}

@media (min-width: 1024px){
  footer.footer .colophon{
    padding-bottom: 0px;
  }
}

footer.footer a:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 127, 80, var(--tw-text-opacity));
}

@media (min-width: 640px){
}

@media (min-width: 1280px){
}

@media (min-width: 1536px){
}

@media (min-width: 1536px){
}

@media (min-width: 1921px){
}

@media (min-width: 2541px){
}

/* SEO Sections Styles */

/* About Section */
.about {
    background-color: #ffffff;
}

.about .grid {
    display: grid;
}

.trust-indicators .trust-card {
    display: flex;
    flex-direction: column;
}

.trust-indicators.trust-salient{
    background: #0F172B;
}

.trust-indicators.trust-salient h2,
.trust-indicators.trust-salient h3{
    color: #ffffff;
}

.trust-indicators.trust-salient .trust-subtitle{
    color: #94A3B8;
}

.trust-indicators.trust-salient .trust-card{
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.trust-indicators.trust-salient .trust-card:hover{
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.06) !important;
}

.trust-indicators.trust-salient .trust-card p{
    color: #CBD5E1;
}

.trust-indicators.trust-salient .trust-card p.text-gray-700{
    color: #CBD5E1;
}

.trust-indicators.trust-salient .trust-icon-wrapper{
    color: #E2E8F0;
}

.trust-indicators.trust-salient .trust-icon{
    stroke: currentColor;
}

.trust-indicators .trust-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.trust-indicators .trust-card h3 {
    line-height: 1.3;
}

.trust-icon-wrapper {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem;
    min-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem;
    min-height: 1.25rem;
    display: block;
}

/* FAQ Section */
.faq {
    background-color: #ffffff;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    cursor: pointer;
    outline: none;
}

.faq-question:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

.faq-icon {
    transition: transform 0.3s ease;
    width: 1rem !important;
    height: 1rem !important;
    min-width: 1rem;
    min-height: 1rem;
    flex-shrink: 0;
    display: block;
}

.faq-answer {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Documentation Highlights Section */

/* Download button in footer */
.footer-download-item {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.footer-download-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

/* Highlight email in footer */
.footer-email-link {
    color: #ffffff !important;
    border-color: #ffffff !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #ffffff !important;
    text-decoration: none;
}

/* Overview section (Is eCam for me?) - checklist blocks */
.overview-groups{
  display:flex;
  flex-direction:column;
  gap:2.25rem
}

@media (min-width: 1024px){
  .overview-groups{
    gap:3rem
  }
}

.overview-group-title{
  display:grid;
  grid-template-columns:20px 1fr;
  align-items:center;
  column-gap:0.75rem
}

.overview-group-icon{
  color:#6a399b;
  display:inline-flex;
  align-items:center;
  justify-content:center
}

.overview-checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:0.9rem
}

.overview-checklist-item{
  display:grid;
  grid-template-columns:1.25rem 1fr;
  column-gap:0.75rem;
  align-items:flex-start
}

.overview-check{
  color:#28a745;
  font-weight:700;
  font-size:1.1rem;
  line-height:1.5;
  margin-top:0.05rem;
  width:1.25rem;
  text-align:center
}

.overview-checklist-text{
  flex:1 1 auto;
  line-height:1.65
}

/* Alternate alignment (second block right-aligned) */
.overview-group--alt{
  /* Keep the block visually shifted to the right, but keep text left-aligned */
  align-self:stretch
}

@media (min-width: 1024px){
  .overview-group--alt{
    /* Keep aligned with the first block (no right shift) */
    align-self:stretch
  }
}

.overview-group--alt .overview-group-title{
  grid-template-columns:20px 1fr
}

.overview-group--alt .overview-group-icon{
  grid-column:auto;
  justify-self:start
}

.overview-group--alt .overview-group-title-text{
  grid-column:auto;
  justify-self:start
}

.overview-group--alt .overview-checklist-item{
  display:grid
}

.overview-group--alt .overview-check{
  grid-column:auto;
  justify-self:start
}

.overview-group--alt .overview-checklist-text{
  grid-column:auto;
  text-align:left
}

.overview-group--alt .overview-checklist{
  align-items:flex-start
}
