:root {
    --brand-green: #42b80e;
    --brand-dark: #292a2e;
    --brand-green-light: #e8f8e0;
    --brand-green-mid: #d0f0bb;
    --nav-height: 64px;
    --max-width: 1400px;
    --font-body: "DM Sans", sans-serif;
    --font-body-alt: "DM Sans", sans-serif;
    --font-heading: "DM Sans", sans-serif;
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.05);
    --shadow-dropdown:
        0 8px 40px rgba(41, 42, 46, 0.13), 0 2px 8px rgba(41, 42, 46, 0.07);
    --radius-dropdown: 14px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    
    --card-w: 300px;
    --card-gap: 16px;
    --card-radius: 22px;
    --card-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;

    --foot-border: #e8e9eb;
    --foot-muted: #8a8d96;
    --foot-link: #3a3b40;
    --foot-link-hover: var(--brand-green);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Google Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Lexend", sans-serif;
}

.title-highlight {
    color: var(--brand);
}

.hero-section {
    width: 100%;
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #f0f4f8;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 88%);
    z-index: 0;
}

.hero-top {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0 0;
}

.hero-top-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 96px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    min-height: 520px;
    position: relative;
}

.hero-content {
    padding-bottom: 4rem;
    opacity: 0;
    transform: translateX(30px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.1s,
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.1s;
}
.hero-content.hero-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body-alt);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 1.2rem;
}
.hero-eyebrow-badge {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--brand-green-light);
    color: var(--brand-green);
    text-transform: uppercase;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.8px;
    color: var(--brand-dark);
    margin-bottom: 1.4rem;
}
.hero-heading span {
    color: var(--brand-green);
}

.hero-desc {
    font-family: var(--font-body-alt);
    font-size: 0.9rem;
    line-height: 1.8;
    color: #5a5d68;
    max-width: 440px;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.65rem 1.4rem;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 7px;
    text-decoration: none;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 14px rgba(66, 184, 14, 0.28);
}
.hero-btn-primary:hover {
    background: #37a00c;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(66, 184, 14, 0.36);
}
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body-alt);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    transition:
        gap var(--transition),
        color var(--transition);
}
.hero-btn-ghost:hover {
    color: var(--brand-green);
    gap: 10px;
}

.hero-images {
    position: relative;
    min-height: 520px;
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.05s,
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.05s;
}
.hero-images.hero-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-img-dashboard {
    position: absolute;
    top: 0;
    right: -3rem;
    width: 78%;
    border-radius: 14px;
    box-shadow:
        0 20px 60px rgba(41, 42, 46, 0.18),
        0 4px 16px rgba(41, 42, 46, 0.1);
    display: block;
    z-index: 2;
}

.hero-img-phone {
    position: absolute;
    bottom: -3.5rem;
    left: 0;
    width: 34%;
    border-radius: 22px;
    /* box-shadow:
        0 24px 50px rgba(41, 42, 46, 0.22),
        0 4px 12px rgba(41, 42, 46, 0.1); */
    display: block;
    z-index: 3;
}

.hero-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0 4rem;
    margin-top: 3rem;
}
.hero-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.hero-strip-label {
    font-family: var(--font-body-alt);
    font-size: 0.68rem;
    font-weight: 500;
    color: #aab0bb;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-strip-track-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-strip-track-wrap::before,
.hero-strip-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 8rem;
    z-index: 1;
    pointer-events: none;
}
.hero-strip-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.hero-strip-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.hero-strip-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: stripSlide 38s linear infinite;
}
.hero-strip-track:hover {
    animation-play-state: paused;
}
@keyframes stripSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.hero-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    flex-shrink: 0;
    height: 44px;
}
.hero-strip-item img {
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
    filter: brightness(0) opacity(0.28);
    transition: filter var(--transition);
}
.hero-strip-item:hover img {
    filter: brightness(0) opacity(0.55);
}

@media (max-width: 960px) {
    .hero-top-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-content {
        transform: translateX(0);
        padding-bottom: 2rem;
    }
    .hero-images {
        transform: translateX(0);
        min-height: 320px;
        margin-bottom: 4rem;
    }
    .hero-img-dashboard {
        width: 72%;
        right: 0;
    }
    .hero-img-phone {
        width: 30%;
        bottom: -2.5rem;
    }
    .hero-bg {
        clip-path: polygon(0 0, 100% 0, 100% 78%, 0 94%);
    }
}
@media (max-width: 600px) {
    .hero-top {
        padding: 96px 1.2rem 0;
    }
    .hero-strip {
        padding: 4rem 0 3rem;
        margin-top: 1rem;
    }
    .hero-strip-inner {
        padding: 0 1.2rem;
    }
    .hero-top-inner {
        padding: 0 1.2rem;
    }
    .hero-heading {
        font-size: 2.1rem;
    }
    .hero-images {
        min-height: 260px;
    }
    .hero-img-dashboard {
        width: 75%;
    }
    .hero-img-phone {
        width: 34%;
        bottom: -2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-strip-item {
        padding: 0 2rem;
    }
}

.pos-section {
    width: 100%;
    background: #000;
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}

.pos-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 55% 60% at 85% 50%,
            rgba(66, 184, 14, 0.07) 0%,
            transparent 65%
        ),
        url("data:image/svg+xml,%3Csvg width=%2748%27 height=%2748%27 viewBox=%270 0 48 48%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%271%27 cy=%271%27 r=%271%27 fill=%27%2342b80e%27 fill-opacity=%270.05%27/%3E%3Ccircle cx=%2725%27 cy=%2725%27 r=%271%27 fill=%27%2342b80e%27 fill-opacity=%270.05%27/%3E%3C/svg%3E");
    pointer-events: none;
}

.pos-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.pos-header {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.pos-header.pos-visible {
    opacity: 1;
    transform: translateY(0);
}

.pos-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    color: #fff;
    letter-spacing: -0.3px;
}

.pos-title span {
    color: var(--brand-green);
}

.pos-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.pos-visual {
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.7s ease 0.1s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.pos-visual.pos-visible {
    opacity: 1;
    transform: translateX(0);
}

.pos-img-main {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    height: 460px;
    object-position: center;
}

.pos-img-badge {
    position: absolute;
    top: 50%;
    right: -52px;
    transform: translateY(-50%);
    width: 208px;
    height: 150px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    z-index: 2;
}

.pos-content {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.7s ease 0.2s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.pos-content.pos-visible {
    opacity: 1;
    transform: translateX(0);
}

.pos-content-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.pos-content-title span {
    color: var(--brand-green);
}

.pos-content-desc {
    font-family: var(--font-body-alt);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    max-width: 480px;
}

.pos-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pos-list-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-family: var(--font-body-alt);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.pos-list-item i {
    color: var(--brand-green);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pos-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: gap var(--transition);
}

.pos-learn-more:hover {
    gap: 11px;
}

@media (max-width: 960px) {
    .pos-body {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pos-visual {
        transform: translateY(-28px);
    }

    .pos-visual.pos-visible {
        transform: translateY(0);
    }

    .pos-img-badge {
        right: 16px;
        top: auto;
        bottom: -36px;
        transform: none;
        width: 88px;
        height: 88px;
    }

    .pos-content {
        transform: translateY(28px);
    }

    .pos-content.pos-visible {
        transform: translateY(0);
    }

    .pos-content-desc {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .pos-section {
        padding: 64px 0 72px;
    }
    .pos-inner {
        padding: 0 24px;
    }
    .pos-header {
        margin-bottom: 40px;
    }
    .pos-img-main {
        height: 300px;
    }
    .pos-img-badge {
        width: 72px;
        height: 72px;
        right: 12px;
        bottom: -28px;
    }
}

.who-section {
    width: 100%;
    background: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 88px 0 96px;
}

.who-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.who-header {
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.who-header.who-visible {
    opacity: 1;
    transform: translateY(0);
}

.who-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    color: var(--brand-dark);
    letter-spacing: -0.3px;
}

.who-title span {
    color: var(--brand-green);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.who-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid #ecedf0;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 0 0 28px;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.who-card.who-visible {
    opacity: 1;
    transform: translateY(0);
}

.who-card:hover {
    box-shadow: 0 16px 48px rgba(41, 42, 46, 0.14);
    border-color: #d4d6da;
}

.who-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.who-card-icon {
    font-size: 22px;
    color: var(--brand-dark);
    flex-shrink: 0;
    line-height: 1;
}

.who-card-title {
    font-family: var(--font-body);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--brand-dark);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.who-card-img-wrap {
    position: relative;
    align-self: flex-end;
    width: 58%;
    margin-left: auto;
    margin-top: 12px;
    flex-shrink: 0;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    height: 340px;
}

.who-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0%);
}

.who-card:hover .who-card-img {
    transform: scale(1.05);
    filter: grayscale(15%);
}

@media (max-width: 960px) {
    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .who-section {
        padding: 64px 0 72px;
        min-height: auto;
    }
    .who-inner {
        padding: 0 24px;
    }
    .who-header {
        margin-bottom: 36px;
    }
    .who-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .who-card {
        min-height: 390px;
    }
    .who-card-img-wrap {
        height: 270px;
        width: 52%;
    }
}

.test-section {
  width: 100%;
  position: relative;
  padding: 88px 0 96px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.test-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 68%);
  z-index: 0;
}

.test-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #f0f4f8;
  z-index: -1;
}

.test-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 0 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.test-header {
  flex-shrink: 0;
  width: 400px;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.test-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--brand-dark);
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.test-subtitle {
  font-family: var(--font-body-alt);
  font-size: 14px;
  font-weight: 400;
  color: #8a8d96;
  line-height: 1.6;
  margin-bottom: 28px;
}

.test-controls {
  display: flex;
  gap: 10px;
}

.test-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.test-btn-prev {
  background: #ecedf0;
  color: #8a8d96;
}

.test-btn-prev.test-active {
  background: var(--brand-green);
  color: #fff;
}

.test-btn-next {
  background: var(--brand-green);
  color: #fff;
}

.test-btn-next.test-inactive {
  background: #ecedf0;
  color: #8a8d96;
}

.test-btn:active {
  transform: scale(0.92);
}

.test-cards-outer {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 500px;
  overflow: hidden;
}

.test-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--card-gap);
  will-change: transform;
}

.test-card {
  flex-shrink: 0;
  width: var(--card-w);
  height: 460px;
  border-radius: var(--card-radius);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  box-shadow: var(--card-shadow);
  will-change: transform, opacity;
  transform-origin: left center;
}

.test-card-top {
  height: 40px;
  display: flex;
  align-items: center;
}

.test-card-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: brightness(0) opacity(0.5);
}

.test-card-mid {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.test-card-quote {
  font-family: var(--font-body-alt);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #5a5d66;
}

.test-card-divider {
  width: 28px;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
  margin-bottom: 12px;
}

.test-card-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 3px;
}

.test-card-role {
  font-family: var(--font-body-alt);
  font-size: 12px;
  color: #9a9da8;
}

.test-fade-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, transparent, #f0f4f8);
  pointer-events: none;
  z-index: 10;
}

@media (max-width: 900px) {
  .test-section {
    overflow: hidden;
  }

  .test-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 32px;
  }

  .test-header {
    width: 100%;
    padding-right: 0;
  }

  .test-subtitle {
    margin-bottom: 20px;
  }

  .test-controls {
    margin-top: 0;
  }

  .test-cards-outer {
    width: 100vw;
    margin-left: -24px;
    height: auto;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .test-track {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    padding: 16px 24px 24px;
  }

  .test-card {
    height: 400px;
  }
}

@media (max-width: 560px) {
  .test-section {
    padding: 60px 0 72px;
  }

  .test-title {
    font-size: 30px;
  }

  .test-card {
    height: 360px;
  }

  .test-card-quote {
    font-size: 13px;
  }
}
.cta-section {
    width: 100%;
    background: #f0f4f8;
}

.cta-section > div {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 2rem;
    width: 100%;
}

.cta-inner {
    width: 100%;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.25;
    margin-bottom: 28px;
    max-width: 480px;
    letter-spacing: -0.02em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 12px rgba(66, 184, 14, 0.25);
}

.cta-btn:hover {
    background: #37a00c;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(66, 184, 14, 0.32);
}

.cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .cta-section > div {
        padding: 60px 1.2rem;
    }
    .cta-title {
        max-width: 100%;
    }
}
