/* ===================================================
  UTMTATIC LANDING PAGE STYLESHEET
=================================================== */

/* -----------------------------
   Root Variables & Base Styling
----------------------------- */
:root {
  --brand-blue: #4d89f9;
  --brand-blue-hover: #3474e0;
  --brand-black: #e4e8ef;
  --brand-white: #232a33;
  --gray-100: #29313a;
  --gray-300: #b3b9c5;
  --gray-400: #7A85A0;
  --shadow: 0 8px 32px #000a;
  --font: 'Work Sans', 'Segoe UI', Arial, sans-serif;
  --background-main: #1c232b;
  --background-alt: #222a33;
  --accent-yellow: #ffd33d;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  background: var(--background-main);
  margin: 0;
  font-family: var(--font);
  color: var(--brand-black);
  font-size: 18px;
}

/* ---------------------------------
   Header Bar / Navigation
--------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  transition: background 0.23s, box-shadow 0.23s;
  background: none;
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px;
}

.header.scrolled {
  background: #5677af2b;
  box-shadow: 0 1.5px 10px #10162220;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.96em;
}

/* --- Logo --- */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.41em;
  text-decoration: none;
}

.header-logo svg {
  height: 34px;
  width: auto;
  display: block;
}

/* --- Navigation Links --- */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.6em;
  margin-left: 2.1em;
}

.header-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.01em;
  transition: color 0.18s;
  opacity: 0.93;
  padding: 3px 0;
}

.header-nav a:hover,
.header-nav a:focus {
  color: var(--brand-black);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1em;
  margin-left: 2.1em;
}

/* --- Header Buttons --- */
.header-btn {
  background: none;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.01em;
  padding: 0.48em 1.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  opacity: 0.93;
}

.header-btn:hover,
.header-btn:focus {
  color: var(--brand-black);
}

.header-btn-signup {
  background: var(--brand-blue);
  color: #fff;
  font-weight: 600;
  border: none;
  margin-left: 0.4em;
  padding: 0.75em 1.5em;
  border-radius: 8px;
  box-shadow: 0 2px 8px #18315b2a;
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
}

.header-btn-signup:hover,
.header-btn-signup:focus {
  background: var(--brand-blue-hover);
  color: #fff;
  box-shadow: 0 3px 14px #18315b37;
}

@media (max-width: 750px) {
  .header-inner {
    padding: 0 8px;
  }
  .header-nav {
    gap: 1.1em;
    margin-left: 0.7em;
  }
  .header-actions {
    gap: 0.7em;
    margin-left: 0.7em;
  }
  .header-logo svg {
    height: 27px;
  }
}

/* ---------------------------------
   Section Alignment Utility
--------------------------------- */
.section-align {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 0px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .section-align {
    max-width: 100vw;
    padding-left: 2vw;
    padding-right: 8px;
  }
}

/* ---------------------------------
   Hero Section
--------------------------------- */
.hero-section {
  min-height: 300px;
  padding-top: 150px;
  padding-bottom: 100px;
}

.hero-section .section-align {
  align-items: center;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  padding-top: 24px;
}

.hero-title {
  font-size: 3.5em;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 0.27em;
  letter-spacing: 0.01em;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 1.5em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.9em;
  line-height: 1.38;
  max-width: 800px;
  padding-top: 20px;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 200px;
    padding-top: 84px;
    padding-bottom: 28px;
  }
  .hero-title {
    font-size: 2em;
    max-width: 92vw;
  }
  .hero-subtitle {
    font-size: 1.08em;
    max-width: 88vw;
  }
}
@media (max-width: 600px) {
  .hero-section {
    padding-top: 64px;
    min-height: 120px;
  }
  .hero-title {
    font-size: 1.3em;
  }
  .hero-subtitle {
    font-size: 1em;
  }
}

/* ---------------------------------
   About Section
--------------------------------- */
.about-section {
  padding-top: 54px;
  padding-bottom: 128px;
  background: #222a33;
}

.about-title {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3em;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-align: center;
}

.about-lead {
  font-size: 1.15em;
  color: var(--gray-300);
  margin-bottom: 1.2em;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
    max-width: 45rem; /* or 600px, etc. */
}

.about-list {
  list-style: disc inside;
  color: var(--brand-black);
  font-size: 1.04em;
  padding-left: 1.1em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.57em;
}

@media (max-width: 600px) {
  .about-section {
    padding-top: 36px;
    padding-bottom: 20px;
  }
  .about-title {
    font-size: 1.25em;
  }
  .about-lead,
  .about-list {
    font-size: 1em;
  }
}

/* ---------------------------------
   Why Section
--------------------------------- */
.why-section {
  padding-top: 54px;
  padding-bottom: 54px;
  background: #222a33;
}

.why-title {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3em;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-align: center;
}

.why-lead {
  font-size: 1.15em;
  color: var(--gray-300);
  margin-bottom: 1.2em;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
    max-width: 45rem; /* or 600px, etc. */
}

.about-list {
  list-style: disc inside;
  color: var(--brand-black);
  font-size: 1.04em;
  padding-left: 1.1em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.57em;
}

@media (max-width: 600px) {
  .about-section {
    padding-top: 36px;
    padding-bottom: 20px;
  }
  .about-title {
    font-size: 1.25em;
  }
  .about-lead,
  .about-list {
    font-size: 1em;
  }
}

/* ---------------------------------
   Utility Classes
--------------------------------- */
.hide {
  display: none !important;
}

/* ---------------------------------
   Remove underline from all links/text
--------------------------------- */
a, a:visited, a:hover, a:active {
  text-decoration: none !important;
}

/* ---------------------------------
   How It Works Section: Stacked, Centered Layout
--------------------------------- */
.howitworks-section {
  padding-top: 54px;
  padding-bottom: 54px;
  background: none;
  border-radius: 18px;
  margin-top: 36px;
  margin-bottom: 0;
  box-shadow: 0 2px 32px #18315b14;
}

.section-align.howitworks-align {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.howitworks-title {
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0.55em;
  letter-spacing: 0.01em;
}

.howitworks-desc {
  font-size: 1.16em;
  color: var(--gray-300);
  margin-bottom: 2.2em;
  max-width: 650px;
}

.howitworks-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.howitworks-steps li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  background: #222a33;
  border-radius: 13px;
  padding: 22px 26px 22px 18px;
}

.howitworks-step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: none;
  border-radius: 50%;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  box-shadow: none;
}

.howitworks-step-icon svg {
  width: 33px;
  height: 33px;
  color: #cce1ff;
  display: block;
}

.howitworks-step-title {
  font-size: 1.08em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.18em;
  letter-spacing: 0.01em;
}

.howitworks-step-desc {
  color: var(--gray-300);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
  margin-top: 0.5em;
  max-width: 800px;
}

@media (max-width: 900px) {
  .howitworks-section {
    padding: 25px 0 25px 0;
    margin-top: 24px;
    border-radius: 7px;
  }
  .howitworks-steps {
    gap: 16px;
  }
  .howitworks-steps li {
    padding: 14px 10px 14px 8px;
    border-radius: 8px;
    gap: 10px;
    max-width: 98vw;
  }
  .howitworks-desc {
    font-size: 1em;
  }
  .howitworks-step-title {
    font-size: 1em;
  }
  .howitworks-step-icon {
    width: 34px;
    height: 34px;
    margin-right: 3px;
  }
  .howitworks-step-icon svg {
    width: 19px;
    height: 19px;
  }
}

.two-row-two-column-section {
  max-width: 1250px;
  margin: 0 auto;
  padding-top: 128px;
  padding-bottom: 128px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.two-row-two-column-section .row {
  display: flex;
  gap: 2rem;
}

.two-row-two-column-section .column {
  flex: 1;
  padding: 0 1rem;
  box-sizing: border-box;
}

.two-row-two-column-section h2 {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  text-align: center;
}

.two-row-two-column-section p {
  font-size: 1.15em;
  line-height: 1.7;
  color: var(--gray-300);
  margin-top: 0;
  margin-bottom: 1.5em;
  font-weight: 400;
  text-wrap: pretty;
  text-align: center;
}

@media (max-width: 800px) {
  .two-row-two-column-section {
    padding: 1.5rem 0.5rem;
    gap: 1.5rem;
  }
  .two-row-two-column-section .row {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 0;
  }
  .two-row-two-column-section .column {
    padding: 0;
  }
}

.faq-section {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #1c232b;
  padding: 110px 0 120px 0;
}

.faq-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 1.6em;
}

.faq-accordion-row {
  display: flex;
  gap: 4em;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-accordion-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.7em;
  min-width: 0;
}

.faq-item {
  border-radius: 0.8em;
  background: none;
  box-shadow: none;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.18em 1.2em 1.05em 1.2em;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.18em;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.12s;
  letter-spacing: -0.3px;
  border-bottom: none;
  border-radius: 0;
}

.faq-question:hover,
.faq-question:focus {
  background: rgba(36,48,83,0.11);
}

.faq-icon {
  display: inline-block;
  margin-left: 1.1em;
  width: 1.15em;
  height: 1.15em;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #7da1ff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.faq-icon::before {
  top: 50%; left: 0; right: 0;
  height: 3px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  transform: translateX(-50%);
}
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) scaleY(0.2);
  opacity: 0.2;
}

.faq-answer {
  padding: 0 1.2em 1.15em 1.2em;
  color: var(--gray-300, #c1c7d7);
  font-size: 1.07em;
  line-height: 1.7;
  background: none;
  animation: faqFadeIn 0.3s;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-0.5em);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 900px) {
  .faq-section {
    padding: 2.5em 0 3em 0;
    border-radius: 0;
  }
  .faq-title {
    font-size: 1.25em;
    margin-bottom: 1.2em;
  }
  .faq-accordion-row {
    flex-direction: column;
    gap: 1.5em;
    padding: 0 1em;
  }
  .faq-accordion-col {
    gap: 0.9em;
  }
  .faq-question {
    font-size: 1em;
    padding: 1em 0.8em 0.8em 0.8em;
  }
  .faq-answer {
    padding: 0 0.8em 0.8em 0.8em;
    font-size: 0.98em;
  }
}

/* More subtle price flash animation for yearly */
.plan-price.flash-yellow {
  animation: price-flash-yellow 0.4s;
}
@keyframes price-flash-yellow {
  0% {
    color: var(--accent-yellow);
    text-shadow: 0 0 4px var(--accent-yellow);
    transform: scale(1.04);
  }
  60% {
    color: var(--accent-yellow);
    text-shadow: 0 0 0 var(--accent-yellow);
    transform: scale(1.07);
  }
  100% {
    color: var(--brand-black);
    text-shadow: none;
    transform: scale(1);
  }
}

/* More subtle price flash animation for monthly */
.plan-price.flash-blue {
  animation: price-flash-blue 0.4s;
}
@keyframes price-flash-blue {
  0% {
    color: var(--brand-blue);
    text-shadow: 0 0 4px var(--brand-blue);
    transform: scale(1.04);
  }
  60% {
    color: var(--brand-blue);
    text-shadow: 0 0 0 var(--brand-blue);
    transform: scale(1.07);
  }
  100% {
    color: var(--brand-black);
    text-shadow: none;
    transform: scale(1);
  }
}

/* Toggle switch and slider: inner color and background color update */
.toggle-switch {
  background: #3473e091;
  border: none;
  border-radius: 22px;
  width: 56px;
  height: 28px;
  position: relative;
  cursor: pointer;
  padding: 0;
  outline: none;
  display: flex;
  align-items: center;
  transition: background 0.18s;
}
.toggle-switch .toggle-slider {
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--brand-blue);
  border-radius: 50%;
  transition: background 0.23s, left 0.23s cubic-bezier(.4,0,.2,1);
}

.toggle-switch.yearly {
  background: #d6a800;
}

.toggle-switch.yearly .toggle-slider {
  background: var(--accent-yellow);
  left: 31px;
}

/* Plan billed text coloring */
.plan-billed {
  color: var(--brand-blue);
  transition: color 0.18s;
}
.plan-billed.yearly {
  color: var(--gray-400);
}

html, body {
  height: 100%;
  margin: 0;
  box-shadow: 0 8px 32px #0012;
  font-family: var(--font);
  color: var(--brand-black);
}

.pricing-wrapper {
  background: #222a33;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 128px 0; /* Padding now sits inside the colored background */
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-header h1,
.pricing-header h2 {
  font-size: 3em;
  font-weight: 800;
  margin: 0 0 0.4em 0;
  letter-spacing: -0.01em;
  color: var(--brand-black);
}
.pricing-blurb {
  font-size: 1.15em;
  color: var(--gray-300);
  margin: 0;
  font-weight: 400;
}

.pricing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4em;
  margin-bottom: 52px;
  font-size: 1.14em;
  font-weight: 600;
}

.toggle-label {
  color: var(--brand-black);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pricing-tiers {
  display: flex;
  gap: 3em;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  flex-wrap: wrap;
}

.pricing-card {
  background: #5677af2b;
  border-radius: 12px;
  box-shadow: 0 8px 32px #0012;
  padding: 2.4em 2em 2.1em 2em;
  min-width: 320px;
  max-width: 380px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.2em;
  transition: box-shadow .2s;
}

.plan-name {
  font-size: 1.5em;
  font-weight: 800;
  color: var(--brand-black);
  letter-spacing: 0.02em;
  margin-bottom: 0.16em;
  margin-top: 0;
  text-align: center;
  line-height: 1.18;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.19em;
  margin-bottom: 0.08em;
}
.plan-price {
  font-size: 2.2em;
  font-weight: 800;
  color: var(--brand-black);
  letter-spacing: -0.01em;
}
.plan-per {
  font-size: 1.12em;
  color: var(--gray-300);
  margin-left: 0.18em;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.plan-billed {
  color: var(--gray-400);
  font-size: 1.02em;
  margin-bottom: 1.1em;
  margin-top: 0.02em;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.plan-desc {
  margin-bottom: 0.80em;
  margin-top: 0.10em;
  color: var(--gray-300);
  font-size: 1.0em;
  text-align: center;
  min-height: 2.2em;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 95%;
}

.plan-btn {
  width: 100%;
  background: var(--brand-blue);
  color: var(--brand-white);
  border-radius: 8px;
  padding: 1em 0;
  font-size: 1.17em;
  font-weight: 700;
  border: none;
  margin-bottom: 1.3em;
  margin-top: 0.1em;
  cursor: pointer;
  transition: background .18s;
  box-shadow: 0 1px 8px #0003;
  letter-spacing: -0.01em;
}
.plan-btn:hover {
  background: var(--brand-blue-hover);
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  width: 100%;
  margin: 1.2em 0 1.2em 0;
}

.plan-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
  color: var(--brand-black);
  font-size: 1.09em;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.plan-meta li:not(:last-child) {
  margin-bottom: 0.4em;
}

/* Subtle style for additional user pricing */
.plan-meta .additional-user {
  color: var(--gray-400);
  font-size: 0.98em;
  font-weight: 400;
  margin-top: 0.2em;
  letter-spacing: 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  color: var(--brand-black);
  font-size: 1.07em;
  font-weight: 400;
}

/* Flexbox & alignment improvements for checkmarks */
.plan-features li {
  margin-bottom: 0.82em;
  display: flex;
  align-items: center;
  gap: 0.44em;
}
.plan-features li strong {
  font-weight: 700;
  color: var(--brand-blue);
  margin-right: 0.33em;
}
.plan-features .checkmark {
  color: var(--gray-400);
  font-size: 1.24em;
  font-weight: 700;
  margin-right: 0.18em;
  display: flex;
  align-items: center;
}

/* Make sure SVG is always vertically centered and sized nicely */
.plan-features .checkmark svg {
  display: block;
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

@media (max-width: 1100px) {
  .pricing-tiers {
    flex-direction: column;
    align-items: center;
    gap: 2.2em;
  }
  .pricing-card {
    max-width: 480px;
    min-width: 0;
    width: 97vw;
  }
}
@media (max-width: 700px) {
  .pricing-header h1,
  .pricing-header h2 { font-size: 2em; }
}

.site-footer {
  background: none;
  color: #b3b9c5;
  padding: 12px 0 50px 0;
  font-size: 1.08em;
  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6em;
}

.footer-brand {
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #7a8597;
  margin-bottom: 8px;
  font-size: .85em;
}

.footer-icons {
  display: flex;
  gap: 0.5em;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7a8597;
  transition: color 0.18s, transform 0.18s;
  border-radius: 50%;
  padding: 5px;
}

.footer-icon-link:hover,
.footer-icon-link:focus {
  color: #4d89f9;
  background: #19202b;
  transform: translateY(-2px) scale(1.12);
}

.footer-icon-link svg {
  display: block;
}

@media (max-width: 600px) {
  .footer-content {
    padding: 0 10px;
  }
  .footer-icons {
    gap: 0.8em;
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(.39,.58,.57,1),
    transform 0.7s cubic-bezier(.39,.58,.57,1);
  will-change: opacity, transform;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: none;
  transition-delay: var(--scroll-delay, 0ms);
}

/* Animate each step in with a stagger, when parent gets .in-view */
.howitworks-steps li {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(.39,.58,.57,1),
    transform 0.7s cubic-bezier(.39,.58,.57,1);
  will-change: opacity, transform;
}
.howitworks-steps.scroll-animate.in-view li {
  opacity: 1;
  transform: none;
}
.howitworks-steps.scroll-animate.in-view li:nth-child(1) { transition-delay: 0ms; }
.howitworks-steps.scroll-animate.in-view li:nth-child(2) { transition-delay: 90ms; }
.howitworks-steps.scroll-animate.in-view li:nth-child(3) { transition-delay: 180ms; }
