/* ===================================================================
   Tasklane — Static site styles
   Palette & values extracted directly from live Wix site source
   =================================================================== */

@font-face {
  font-family: 'Trenda';
  src:
    url('assets/fonts/Trenda-Regular.woff2') format('woff2'),
    url('assets/fonts/Trenda-Regular.woff') format('woff'),
    url('assets/fonts/Trenda-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Trenda';
  src:
    url('assets/fonts/Trenda-Bold.woff2') format('woff2'),
    url('assets/fonts/Trenda-Bold.woff') format('woff'),
    url('assets/fonts/Trenda-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src:
    url('assets/fonts/Inter-Regular.woff2') format('woff2'),
    url('assets/fonts/Inter-Regular.woff') format('woff'),
    url('assets/fonts/Inter-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src:
    url('assets/fonts/Inter-Bold.woff2') format('woff2'),
    url('assets/fonts/Inter-Bold.woff') format('woff'),
    url('assets/fonts/Inter-Bold.ttf') format('truetype');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Exact Wix palette */
  --color-grey-fe: #fefefe;
  --color-grey-fb: #fbfbfb;
  --color-grey-f0: #f0f0f0;
  --color-grey-f5: #f5f5f5;
  --color-grey-e6: #e6e6e6;
  --color-grey-e9: #e9e9e9;
  --color-grey-e3: #e3e3e3;
  --color-grey-d6: #d6d6d6;
  --color-grey-d9: #d9d9d9;
  --color-grey-97: #979797;
  --color-black: #252525;
  --color-red: #e9444b;
  --color-turquoise: #3ea7b8;
  --color-teal: #72c2b0;
  --color-dark-blue: #26537c;
  --color-extra-dark-blue: #113b61;

  --font-heading: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Trenda', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --max-site-width: 1100px;
  --max-content-width: 780px;
  --max-small-content-width: 580px;
  --header-height: 74px;
}

/* ── Reset ──────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

@media (min-width: 761px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--color-grey-f5);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}

a {
  color: var(--color-turquoise);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
}

h1 {
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

h2 {
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--color-black);
  line-height: 1.5;
}

h3 {
  font-weight: 700;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

p,
li {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.5rem;
  font-family: var(--font-body);
  color: var(--color-black);
}

input,
textarea {
  font-family: var(--font-body);
}

/* ── Container ──────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-site-width);
  margin-inline: auto;
  padding: 0 20px;
}

/* ── Utility ────────────────────────────────────────── */

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.js .reveal-on-scroll {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.js .reveal-on-scroll.reveal-up {
  transform: translate3d(0, 28px, 0);
}

.js .reveal-on-scroll.reveal-left {
  transform: translate3d(-42px, 0, 0);
}

.js .reveal-on-scroll.reveal-right {
  transform: translate3d(42px, 0, 0);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.skip-link:focus-visible {
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.5rem 0.75rem;
  clip: auto;
  background: var(--color-black);
  color: #fff;
  z-index: 1000;
}

.hidden-field {
  display: none;
}

/* ── Buttons ────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--color-turquoise);
  color: var(--color-grey-f5);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--color-extra-dark-blue);
  border-color: var(--color-extra-dark-blue);
  color: var(--color-grey-f5);
}

.button-sm {
  display: inline-flex;
  padding: 0.5rem 0.9rem;
  font-size: 0.94rem;
}

/* ── Section shared ─────────────────────────────────── */

.section-head {
  max-width: var(--max-content-width);
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-head p {
  max-width: 640px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 20px 0;
  color: var(--color-black);
  font-size: clamp(24px, 5vw, 54px);
  line-height: 1.15;
  font-weight: 700;
}

.section-title--small {
  font-size: clamp(1.4rem, 3vw, 1.75rem);
}

/* Light variant for dark-background sections */
.section-head--light h2,
.section-head--light h3,
.section-head--light p {
  color: var(--color-grey-f5);
}

/* ===================================================================
   HEADER / NAV
   =================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  height: var(--header-height);
  z-index: 100;
  background: rgba(245, 245, 245, 0);
  transition: background-color 0.3s ease;
}

.site-header.scrolled {
  background: var(--color-grey-f5);
}

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

.logo {
  width: 200px;
  height: 100%;
  text-decoration: none;
}

.logo img {
  height: 100%;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--color-grey-f5);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  transition:
    color 0.15s linear,
    background-color 0.15s linear;
}
.site-header.scrolled .primary-nav a {
  color: var(--color-black);
}

.primary-nav a:hover,
.site-header.scrolled .primary-nav a:hover {
  color: var(--color-turquoise);
}

.primary-nav .nav-cta {
  font-family: var(--font-heading);
  font-weight: 700;
}

.site-header.scrolled .primary-nav .nav-cta,
.site-header.scrolled .primary-nav .nav-cta:hover,
.primary-nav .nav-cta:hover {
  color: var(--color-grey-f5);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  padding: 0.2rem;
  z-index: 1201;
}

.menu-toggle span:not(.sr-only) {
  width: 1.25rem;
  height: 2px;
  background: var(--color-black);
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    background-color 0.25s ease;
}

/* ===================================================================
   HERO  —  bg: #26537c (dark navy)
   =================================================================== */

.hero {
  position: relative;
  height: clamp(460px, 49vw, 650px);
  background: var(--color-extra-dark-blue);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: var(--header-height);
  text-align: center;
  background: rgba(38, 83, 124, 0.42);
}

.hero-overlay .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 880px;
  width: 90%;
}

.hero-copy h1 {
  margin-bottom: clamp(12px, 3vw, 20px);
  font-size: clamp(24px, 5vw, 54px);
  line-height: 1.15;
  color: var(--color-grey-f5);
}

.hero-sub {
  padding-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-grey-f5);
  max-width: 70%;
  font-size: 20px;
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.5;
}

.hero-btn {
  font-size: 1.15rem;
  padding: 0.7rem 1.8rem;
}

/* ===================================================================
   Promo shots
   =================================================================== */
.section-promo-shots {
  position: relative;
  background: var(--color-grey-f5);
  --promo-progress: 0;
}

.section-promo-shots .inner {
  position: relative;
  width: 76%;
  margin: 0 auto;
}

.section-promo-shots .image-dashboard {
  position: relative;
  width: 100%;
  margin: 0 auto;
  transform: translateY(calc(-8% + (8% * var(--promo-progress))));
  will-change: transform;
}

.section-promo-shots .image-start {
  position: absolute;
  bottom: 30%;
  left: -12%;
  width: 25%;
  transform: translateY(calc(34% * var(--promo-progress)));
  will-change: transform;
}

.section-promo-shots .image-checklists {
  position: absolute;
  bottom: 10%;
  right: -12%;
  width: 25%;
  transform: translateY(calc(27% * var(--promo-progress)));
  will-change: transform;
}

/* ===================================================================
   QUOTE
   =================================================================== */

.quote-section {
  background: var(--color-grey-f5);
  padding-top: 50px;
  padding-bottom: 50px;
}

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

.quote-open,
.quote-close {
  display: flex;
  justify-content: flex-start;
  align-self: flex-start;
  width: 50px;
}

.quote-close {
  align-self: flex-end;
}

.quote-open img,
.quote-close img {
  width: 100%;
  height: auto;
}

.quote-close img {
  transform: rotate(180deg);
}

blockquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--max-content-width);
  width: 100%;
  margin: 0;
  padding: 0;
}

.quote-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

blockquote p {
  flex: 1;
  margin: 0;
  padding: 30px 0;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.875rem;
  font-size: clamp(16px, 4vw, 30px);
  line-height: 1.25;
  text-align: center;
}

cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.94rem;
  color: var(--color-black);
  text-align: center;
}

.cite-role {
  font-family: var(--font-heading);
  font-weight: 700;
}
.cite-role,
.cite-company {
  display: block;
}

/* ===================================================================
   BENEFITS  —  bg: #ffffff (white)
   =================================================================== */

.section-benefits {
  background: var(--color-grey-fb);
  padding: 76px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 0 20px;
  text-align: center;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 375/214;
  padding: 1.2rem 0.4rem;
  border-radius: 12px;
  background-color: var(--color-grey-f0);
}

.metric-label {
  margin: 0 0 0.15rem;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.metric-value {
  color: var(--color-turquoise);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
}

/* ===================================================================
   HOW IT WORKS  —  bg: #fefefe
   =================================================================== */

.section-how {
  display: flex;
  justify-content: center;
  padding: 76px 0;
  background: var(--color-grey-f5);
}

.section-how .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-card {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  max-width: 850px;
}

.video-frame {
  position: relative;
  z-index: 10;
  width: 100%;
  pointer-events: none;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 850/510;
  border-radius: 20px;
  overflow: hidden;
  background: #111827;
  cursor: pointer;
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-overlay img {
  width: 94.1260593220339%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.play-btn {
  position: absolute;
  width: 4.2rem;
  aspect-ratio: 1;
  border: 4px;
  border-style: solid;
  border-color: var(--color-grey-fb);
  border-radius: 50%;
  color: var(--color-grey-fb);
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
}

/* ===================================================================
   OVERVIEW  —  bg: #26537c (dark navy)
   =================================================================== */

.section-overview {
  background: var(--color-dark-blue);
  padding: 80px 0;
  overflow-x: hidden;
}

.feature-split {
  display: grid;
  gap: 50px;
}

.feature-item {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.feature-item:nth-child(odd) {
  direction: rtl;
}

.feature-item:nth-child(odd) > * {
  direction: ltr;
}

.feature-text h3 {
  margin-bottom: 0.5rem;
  color: var(--color-grey-f5);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
}

.feature-text p {
  color: var(--color-grey-f5);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.55;
}

.feature-img img {
  width: 100%;
  border-radius: 8px;
}

/* ===================================================================
   ADDITIONAL FEATURES  —  bg: #26537c (dark navy)
   =================================================================== */

.section-features {
  background: var(--color-dark-blue);
  padding: 0 0 80px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 20px;
  background-color: var(--color-grey-f5);
  border-radius: 8px;
}

.feature-card h3 {
  margin-bottom: 0.35rem;
  color: var(--color-dark-blue);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

.feature-card p {
  color: var(--color-dark-blue);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* ===================================================================
   WHO IT'S FOR  —  bg: #fefefe
   =================================================================== */

.section-audience {
  background: var(--color-grey-fb);
  padding: 76px 0;
}

.tabbed-content {
  max-width: 850px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.tab-button {
  flex: 1;
  appearance: none;
  padding: 1rem 1.25rem;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 0.938rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  border: 0;
  border-radius: 8px;
  background: var(--color-grey-f0);
}

.tab-button:hover {
  color: var(--color-black);
  background-color: var(--color-grey-d6);
}

.tab-button.active {
  color: var(--color-grey-f5);
  border-color: rgba(62, 167, 184, 0.4);
  background: var(--color-turquoise);
}

.tab-panels {
  margin-top: 0rem;
}

.tab-panel {
  padding: 1.25rem;
  border-radius: 8px;
  background-color: var(--color-grey-f0);
}

.tab-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.tab-copy {
  flex: 0.7;
}

.tab-image {
  flex: 0.3;
}

.tab-panel img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
}

.tab-panel h3 {
  margin-bottom: 0.6rem;
}

.tab-panel p {
  color: var(--color-black);
}

.tab-panel p + p {
  margin-top: 0.85rem;
}

.tab-panel ul {
  margin: 0.5rem 0;
  padding-left: 1.3rem;
  color: var(--color-black);
  font-size: inherit;
}

.tab-panel li {
  margin-bottom: 0.25rem;
}

/* ===================================================================
   OUR TEAM  —  bg: #f5f5f5 (light gray)
   =================================================================== */

.section-team {
  background: var(--color-grey-f5);
  padding: 76px 0;
}

.team-mission {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.team-mission h3 {
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
}

.team-mission-copy {
  width: 100%;
  max-width: 850px;
  padding: 20px 24px;
  border-radius: 8px;
  background-color: var(--color-grey-fb);
}

.team-mission p {
  color: var(--color-black);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 760px;
  margin-inline: auto;
}

.supported-by {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--color-black);
}

.support-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto;
}

.support-logo {
  background-color: var(--color-grey-fb);
}
.support-logos img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
}

/* ===================================================================
   FAQ  —  bg: #fefefe
   =================================================================== */

.section-faq {
  background: var(--color-grey-fe);
  padding: 76px 0;
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-list details {
  margin-bottom: 4px;
  border-radius: 8px;
  background-color: var(--color-grey-f0);
}

.faq-list summary {
  gap: 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  padding: 1rem 24px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '';
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  background-image: url('assets/arrow-down.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 1rem 24px;
  color: var(--color-black);
  line-height: 1.6;
}

/* ===================================================================
   BOOK A DEMO / FORM  —  bg: #ffffff
   =================================================================== */

.section-form {
  padding: 76px 0;
  background: var(--color-turquoise);
}

.form-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 640px;
}

.demo-form {
  width: 100%;
  padding: 16px 20px 20px 20px;
  border-radius: 8px;
  background-color: var(--color-grey-fb);
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

.field-row label {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.field-row input,
.field-row textarea {
  padding: 16px 16px;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--color-grey-f0);
}

.field-row input.error,
.field-row textarea.error {
  border-color: var(--color-red);
}

.field-row textarea {
  min-height: 110px;
  resize: vertical;
}

.field-row input:focus,
.field-row textarea:focus {
  outline: 2px solid rgba(62, 167, 184, 0.3);
  border-color: var(--color-turquoise);
}

.error-message {
  display: none;
  margin-top: 0.25rem;
  color: var(--color-red);
}

.error-message.visible {
  display: block;
}

.submit-button-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: auto;
  max-width: min(calc(100vw - 40px), 400px);
  pointer-events: none;
}

.toast {
  border-radius: 8px;
  padding: 20px 24px;
  color: var(--color-grey-f5);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.toast--success {
  background: var(--color-teal);
}

.toast--error {
  background: var(--color-red);
}

/* ===================================================================
   FOOTER
   =================================================================== */

.site-footer {
  background: var(--color-grey-f5);
  border-top: 1px solid var(--color-grey-e3);
}

.site-footer .contact img {
  width: 30px;
  aspect-ratio: 1;
}

.site-footer .contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: 850px;
  margin: 0 auto;
  padding: 2.4rem 20px 2.4rem;
}

.footer-grid .comparisons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--color-black);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.55;
}

.footer-grid a:hover {
  color: var(--color-turquoise);
}

.compare-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-list li {
  width: 100%;
}

.compare-list a {
  color: var(--color-black);
}

.compare-list a:hover {
  color: var(--color-turquoise);
}

/* Footer bottom — bg: #e6e6e6 */
.footer-bottom {
  background: var(--color-grey-e6);
}

.footer-bottom-inner {
  max-width: 850px;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: right;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--color-black);
  font-size: 0.88rem;
}

.social-links {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--color-grey-fb);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.social-links img {
  width: 30px;
  aspect-ratio: 1;
}

.social-links a:hover {
  color: var(--color-turquoise);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 980px) {
  .feature-item {
    grid-template-columns: 1fr;
  }

  .feature-item:nth-child(odd) {
    direction: ltr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html.nav-open,
  body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  .hero {
    padding: 0;
  }

  .section-benefits,
  .section-how,
  .section-overview,
  .section-features,
  .section-audience,
  .section-team,
  .section-faq,
  .section-form {
    padding: 40px 0;
  }

  .quote-section {
    padding: 32px 0;
  }

  .menu-toggle {
    display: flex;
    position: relative;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--color-turquoise);
    transform: translateX(100%);
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease,
      visibility 0s linear 0.35s;
    z-index: 1200;
    padding: 6.2rem 2rem 2rem;
    pointer-events: none;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
  }

  .primary-nav.open {
    transition:
      transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.2s ease,
      visibility 0s linear 0s;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .primary-nav a,
  .site-header.scrolled .primary-nav a {
    display: block;
    padding: 0;
    border: 0;
    color: var(--color-grey-f5);
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 7vw, 2rem);
    line-height: 1.15;
  }

  .primary-nav a:hover,
  .site-header.scrolled .primary-nav a:hover {
    color: var(--color-grey-f5);
    opacity: 0.85;
  }

  .primary-nav .nav-cta,
  .primary-nav .button-sm {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-grey-f5);
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.3rem, 7vw, 2rem);
    line-height: 1.15;
  }

  .primary-nav .nav-cta:hover,
  .primary-nav .button-sm:hover,
  .primary-nav .nav-cta:focus-visible,
  .primary-nav .button-sm:focus-visible {
    background: transparent;
    border-color: transparent;
    color: var(--color-grey-f5);
    opacity: 0.85;
  }

  .menu-toggle.open,
  .menu-toggle[aria-expanded='true'] {
    position: relative;
    z-index: 1202;
  }

  .site-header .menu-toggle.open span:not(.sr-only),
  .site-header .menu-toggle[aria-expanded='true'] span:not(.sr-only) {
    background: var(--color-grey-f5);
  }

  .menu-toggle.open span:nth-child(2),
  .menu-toggle[aria-expanded='true'] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(3),
  .menu-toggle[aria-expanded='true'] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(4),
  .menu-toggle[aria-expanded='true'] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

  .quote-open,
  .quote-close {
    width: 30px;
  }

  .section-title {
    margin-bottom: 10px;
  }

  .metrics-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    aspect-ratio: 375/140;
  }

  .metric-value {
    font-size: clamp(2.4rem, 12vw, 72px);
  }

  .feature-split {
    gap: 30px;
  }

  .tabs {
    flex-direction: column;
    gap: 0.4rem;
  }

  .tab-panel .tab-image {
    display: none;
  }

  .tab-copy {
    flex: 2;
  }

  .tab-copy h3 {
    text-align: center;
  }
  .support-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-grid .comparisons {
    grid-column: 1/-1;
    grid-row: 2;
    align-items: flex-start;
    text-align: left;
  }

  .compare-list {
    gap: 0 10px;
  }
  .compare-list li {
    width: auto;
  }

  .section-promo-shots .inner {
    width: 100%;
    padding-top: 20px;
  }

  .section-promo-shots .phone-shots {
    display: flex;
    gap: 20px;
    padding-top: 24px;
  }

  .section-promo-shots .image-dashboard {
    transform: translateY(0);
  }

  .section-promo-shots .image-start {
    position: static;
    width: 50%;
    transform: none;
  }

  .section-promo-shots .image-checklists {
    position: static;
    width: 50%;
    transform: none;
  }
}

@media (max-width: 400px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .comparisons {
    grid-column: auto;
    grid-row: auto;
  }
}
