@charset "UTF-8";
/* Global CSS Variables */ :root {
  --max-width: 1100px;
  --gap: 1rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --blue: #3765B0;
  --blue-light: #EFF4FA;
  --muted: #6b7280;
  --red: #D9242C;
  --red-light: #FCEEEE;
  --yellow: #FAB618;
  --yellow-light: #FFF8E7;
  --green: #20935F;
  --green-light: #EEFBF5;
  --bg: #FFFCF5;
  --surface: #FFFCF5;
  --card-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
  --card-border: rgba(2, 6, 23, 0.04);
  --radius: 12px;
  --text-primary: #212F47;
  --text-secondary: rgba(33, 47, 71, 0.80);
  --text-primary-ondark: rgba(255, 255, 255, 0.95);
  --text-secondary-ondark: rgba(255, 255, 255, 0.7);
}
/*Helpers*/
.text-primary-colour {
  color: var(--text-primary);
}
.text-secondary-colour {
  color: var(--text-secondary);
}
.text-primary-ondark {
  color: var(--text-primary-ondark)
}
.text-secondary-ondark {
  color: var(--text-secondary-ondark)
}
.text-blue {
  color: var(--blue);
}
.text-yellow {
  color: var(--yellow);
}
.text-red {
  color: var(--red);
}
.text-green {
  color: var(--green);
}
.bg-blue {
  background: var(--blue);
}
.bg-yellow {
  background: var(--yellow);
}
.bg-green {
  background: var(--green);
}
.bg-red {
  background: var(--red);
}
.m0 {
  margin: 0
}
.mt-0 {
  margin-top: 0
}
.ml-0 {
  margin-left: 0
}
.mr-0 {
  margin-right: 0
}
.mb-0 {
  margin-bottom: 0
}
/* Global Styles */
html {
  color-scheme: light;
  font-family: "Alan Sans", sans-serif;
  scroll-behavior: smooth;
  text-wrap-style: pretty;
}
*, *::before, *::after {
  /*  box-sizing: inherit;*/
  /*	box-sizing: border-box;*/
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--blue)
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 calc(var(--space-md));
}
/* ---------- NAV ---------- */
.site-nav {
  /*  background: white;*/
  border-bottom: 1px solid var(--card-border);
  /*  position:sticky;*/
  top: 0;
  z-index: 40;
}
.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem 0;
}
.brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--blue);
  text-decoration: none;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover {
  color: var(--blue);
  background: transparent;
}
.nav-links .cta {
  background: var(--blue);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}
#stc-logo {
  max-width: 140px
}
/* ---------- HERO ---------- */
.hero-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  line-height: 1.02;
  font-weight: 800;
}
.hero-sub {
  /*  margin: 0 0 1rem 0;*/
  font-size: 1.35rem;
  color: var(--text-secondary-ondark);
}
.hero-container {
  display: flex;
  flex-direction: row;
}
.text-item {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  min-width: 0; /* Prevents content from forcing width */
  flex-basis: 0;
  align-items: center;
}
.hero-text {
  padding: 2em;
  max-width: 410px;
}
.image-item {
  flex-grow: 1;
  min-width: 0; /* Prevents content from forcing width */
  flex-basis: 0;
}
.button {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
  transition: transform .12s ease, background .12s;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background: var(--blue);
  color: white;
  border: 1px solid var(--blue);
}
.button.yellow {
  background: var(--yellow);
  color: var(--text-primary);
  border: 1px solid var(--yellow);
}
.button.green {
  background: var(--green);
  color: #FFF;
  border: 1px solid var(--green);
}
.button.large {
  font-size: 1rem;
  padding: 0.8rem 1.25rem;
}
.button.xlarge {
  font-size: 1.5rem;
  padding: 1.2rem 1.5rem;
}
/* ---------- SECTIONS ---------- */
.section {
  padding: 3.25rem 0;
}
.section.light {
  background: var(--surface);
}
.section .container.centered {
  text-align: center;
}
.narrow {
  max-width: 900px;
  margin: 0 auto;
}
/* titles */
.section-title {
  font-size: 1.75rem;
  /*  margin: 0 auto 1.5rem auto;*/
  font-weight: 800;
  color: var(--text-primary);
  max-width: 310px;
}
.centered {
  text-align: center;
}


  /* Base Styles for Full Width Section */
.image-gallery {
  width: 100%;
  padding: 20px 0; /* Add some vertical space */
  position: relative; /* Needed for absolute positioning of carousel buttons */
  overflow: hidden; /* Important for hiding images outside the carousel view */
}

/* --------------------
   MOBILE CAROUSEL (Default)
   -------------------- */
.gallery-container {
  display: flex; /* Arranges items in a row */
  /* This is the key for the simple carousel: it allows the content to be scrolled horizontally */
  overflow-x: scroll;
  scroll-snap-type: x mandatory; /* Makes each item snap into place */
  -webkit-overflow-scrolling: touch; /* Improved scrolling on iOS */
  gap: 10px; /* Space between images */
  padding: 0 10px; /* Padding for the sides of the carousel */
}

.gallery-item {
  /* Key for mobile: ensures each item takes up the full width of the container
     and doesn't shrink, so only one is visible at a time */
  flex: 0 0 90%; 
  scroll-snap-align: center; /* Snap point is the start of the item */
  border-radius: 8px; /* Optional: for a nicer look */
  overflow: hidden;
  background:white;
}


/* --------------------
   DESKTOP GRID (Media Query)
   -------------------- */
@media (min-width: 768px) {
  .gallery-container {
    /* Switch from flex/carousel properties */
    display: grid;
    /* Create a grid with 3 equally sized columns */
    grid-template-columns: repeat(3, 1fr);
    /* Two rows: content will flow automatically to 2 rows with 6 items */
    grid-template-rows: auto;
    gap: 20px; /* Space between grid items */
    /* Remove carousel-specific properties */
    overflow-x: initial;
    scroll-snap-type: none;
    padding: 0 50px; /* Add horizontal padding for desktop */
  }

  .gallery-item {
    /* Reset flex property */
    flex: initial;
    scroll-snap-align: initial;
  }
  
}



/* ---------- GRID UTILITIES ---------- */
.grid {
  display: grid;
  gap: var(--gap);
}
.cols-1-md-3 {
  grid-template-columns: 1fr;
}
.cols-1-md-3 > * {
  min-width: 0;
}
.cols-1-md-3 .card {
  /*  min-height: 160px;*/
}
/* cards & features */
.card {
  background: white;
  padding: 1.25rem;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
  text-align: center;
}
.feature-number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  background: var(--blue);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: auto;
	min-width: 48px;
}
/* reviews */
.review .stars {
  color: var(--yellow);
  font-size: 1.6rem;
  margin: 0 0 0.5rem 0;
}
.quote {
  color: var(--blue);
  font-style: italic;
  margin-bottom: 0.75rem;
  font-size: 1.2em;
}
.attribution {
  color: var(--text-secondary);
  font-weight: 400;
}
/* benefits list */
.benifits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-evenly;
}
.benifits .item {
  max-width: 400px;
  display: flex;
  flex-direction: row;
  /*    flex-wrap: wrap;*/
  gap: 16px;
}
.tick {
  font-size: 2.5rem;
}
/* FAQ: tabs & accordion */
.tabs {
  margin-top: 1rem;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.tab-button {
  background: transparent;
  border: 0;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  color: var(--text-secondary);
}
.tab-button.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.tab-button:hover {
  background: var(--blue-light);
}
.tab-content {
  display: block;
}
.tab-content.hidden {
  display: none;
}
.accordion-item {
  margin-bottom: 0.75rem;
  border: 1px solid #e6e9ee;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  color: var(--text-primary);
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: filter 0.3s ease; /* Smooth transition */
}
.accordion-header:hover {
  background: var(--blue-light);
  /*	filter: brightness(95%);*/
}
.accordion-icon {
  font-size: 1.5rem;
  transition: transform .2s ease;
  color: var(--blue);
}
.accordion-icon.open {
  transform: rotate(45deg);
}
.accordion-content {
  padding: 0 1rem;
  color: #475569;
  background: white;
  display: block;
}
.accordion-content.hidden {
  display: none;
}
#contact {
  background: var(--yellow);
  padding-bottom: 0;
}
/* contact area */
.lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.big-email {
  font-size: 1.75rem;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 1rem;
}
/* footer */
.site-footer {
  background: var(--yellow);
  color: var(--text-primary);
  padding: 1.25rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.socials {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  transition: transform .12s ease;
}
.social-icon:hover {
  transform: translateY(-2px);
}
#brands .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
#brands .logos img {
  max-height: 40px;
}
.logos img:hover {
  opacity: 1;
  filter: none;
}
/* ---------- RESPONSIVE ---------- */
@media (max-width:950px) {
  .hero-container {
    flex-direction: column;
  }
  .hero-text {
    text-align: center;
  }
  .button.xlarge {
    font-size: 1em;
    padding: 1rem 1rem;
  }
}
@media (max-width:480px) {
	#brands .logos {gap:24px}
	.nav-links {gap:0;}
/*	.nav-links a {padding:0.25rem 0.5rem}*/
		#how-it-works .feature {
		display:flex;
		flex-direction:row;
			gap:16px;
	}
	.card-text {text-align: left}
	.card-text h3, .card-text p {margin: 0;}
	
	.section {padding: 1.5rem 0}
}
@media (min-width:640px) {
  .nav-inner {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  .grid.cols-1-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-logos img {
    max-height: 48px;
  }
	#how-it-works .feature {
		display:flex;
		flex-direction:column;
	}
}
@media (min-width:900px) {
  .hero-inner {
    padding: 2.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-sub {
    font-size: 1.125rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .container.narrow {
    max-width: 900px;
  }
}
/* small helpers */
.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/*Animation*/
.rotate-animation {
  animation: slow-rotate 15s linear infinite;
}
@keyframes slow-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotating-pause {
  animation: rotate-pause 6s ease-in-out infinite;
}
@keyframes rotate-pause {
  0% {
    transform: rotate(0deg);
  }
  90% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}