/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-primary:   #1B4332;
  --color-accent:    #6BAF3C;
  --color-white:     #FFFFFF;
  --color-text:      #333333;
  --color-text-light:#666666;
  --color-bg-light:  #F0F7EC;
  --color-border:    #E0E0E0;
  --font-base:       'Inter', sans-serif;
  --container-width: 1200px;
  --header-height:   72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body   { font-family: var(--font-base); color: var(--color-text); line-height: 1.6; }
img    { max-width: 100%; height: auto; display: block; }
a      { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-base); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section       { padding: 80px 0; }
.section--dark  { background: var(--color-primary); color: var(--color-white); }
.section--light { background: var(--color-bg-light); }
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.text-center { text-align: center; }

/* ============================================================
   PLACEHOLDER IMAGE
   ============================================================ */
.placeholder-img {
  background: #D1D5DB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 13px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: 48px; font-weight: 700; line-height: 1.2; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.3; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 16px; font-weight: 600; }
p  { font-size: 16px; line-height: 1.7; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-primary:hover { background: #5a9e2f; color: var(--color-white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }

/* ============================================================
   SERVICE TAG (small uppercase label)
   ============================================================ */
.service-tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FAFAFA;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 0;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }

.primary-nav { flex: 1; display: flex; justify-content: center; }
.nav-links {
  display: flex;
  gap: 48px;
}
.nav-links li a {
  font-size: 15px;
  font-weight: 500;
  color: #1B2D5E;
  transition: color 0.2s;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links .current-menu-item > a {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.ventaja-badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ventaja-badge img { width: 120px; height: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}
/* ── Footer grid ─────────────────────────────────────────── */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  align-items: start;
}

/* Column 1 — Brand */
.footer-logo-link img { height: 52px; width: auto; display: block; margin-bottom: 16px; }
.footer-copy          { font-size: 13px; color: var(--color-text-light); margin: 0; }

/* Column 2 — Services */
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}
.footer-nav--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 14px;
  column-gap: 16px;
}
.footer-nav--grid li { list-style: none; }
.footer-nav--grid a  { font-size: 14px; color: var(--color-text-light); transition: color 0.2s; }
.footer-nav--grid a:hover { color: var(--color-accent); }

/* Column 3 — Newsletter + App download */
.footer-right        { display: flex; flex-direction: column; gap: 28px; }
.footer-newsletter h4 { font-size: 15px; font-weight: 600; color: var(--color-text); margin-bottom: 14px; }

/* Pill newsletter form */
.newsletter-pill {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  gap: 8px;
}
.newsletter-pill input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--font-base);
  color: var(--color-text);
  outline: none;
  min-width: 0;
}
.newsletter-pill input::placeholder { color: #aaa; }
.newsletter-pill button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-base);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-pill button:hover { background: #5a9e2f; }
.newsletter-msg { font-size: 13px; margin-top: 8px; min-height: 18px; }
.newsletter-msg--ok  { color: #6BAF3C; }
.newsletter-msg--err { color: #e05252; }

/* App download */
.footer-app__heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.footer-app__row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-app__logo   { height: 48px; width: auto; flex-shrink: 0; }
.footer-app__badges { display: flex; flex-direction: column; gap: 8px; }
.footer-app__badges img { height: 36px; width: auto; display: block; }

/* Bottom legal bar */
.footer-bottom { border-top: 1px solid var(--color-border); padding: 18px 0; }
.footer-legal-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.footer-legal-nav li { list-style: none; }
.footer-legal-nav li a {
  font-size: 13px;
  color: var(--color-text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal-nav li a:hover { color: var(--color-accent); }

/* ============================================================
   HOME — HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: clamp(600px, 86vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide--active { opacity: 1; }
/* Per-slide overlay + content */
.hero-slide__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 30, 18, 0.55);
  display: flex; align-items: center;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-slide__content {
  color: #fff;
  padding: 120px 0;
  max-width: 680px;
  opacity: 0;
  transform: translateY(26px);
}
.hero-slide--active .hero-slide__content {
  animation: heroTextIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero-slide__tag {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.hero-slide__content h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-slide__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.hero-dot--active { background: #fff; }
.btn-hero {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 15px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-hero:hover { background: #5a9e2f; color: #fff; }

/* ── HOME — FREE TIMEKEEPING PROMO ───────────────────── */
.home-promo { padding: 72px 0; background: #fff; }
.home-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.home-promo__graphic img { width: 100%; max-width: 520px; border-radius: 8px; }
.home-promo__text h2 { color: var(--color-primary); font-size: 32px; margin-bottom: 16px; }
.home-promo__text p  { color: var(--color-text-light); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }

/* ── HOME — ONBOARD EMPLOYEES ─────────────────────────── */
.home-onboard {
  padding: 100px 0;
  text-align: center;
  background-color: #e9e9e5;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0px,
    transparent 32px,
    rgba(255,255,255,0.22) 32px,
    rgba(255,255,255,0.22) 64px
  );
}
.home-onboard__inner {
  max-width: 680px;
  margin: 0 auto;
}
.home-onboard__inner h2 {
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}
.home-onboard__inner p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
}

/* ── HOME — FULL CONTROL / APP MOCKUP ─────────────────── */
.home-control { padding: 88px 0; background: #fff; }

/* Header row: "One Wallet" | divider | subtitle */
.control-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.control-header__green {
  font-size: 70px;
  font-weight: 700;
  color: #428E4D;
  line-height: 1.5em;
}
.control-header__divider {
  width: 1px;
  height: 56px;
  background: #ccc;
  flex-shrink: 0;
}
.control-header__dark {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

/* Description */
.control-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  max-width: 700px;
  margin-bottom: 56px;
}
.control-desc strong { color: var(--color-text); }

/* Two-column body */
.control-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.control-mockup img {
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.10));
}

/* Feature cards */
.control-features__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.control-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.control-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f9fafb;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 18px 20px;
}
.control-feature-card img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.control-feature-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.control-feature-card p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.55;
  margin: 0;
}

/* ── HOME — EMPLOYEE WALLET TILES ──────────────────────── */
/* ── HOME — TWO SOLUTIONS ─────────────────────────────── */
.home-solutions { padding: 88px 0; background: #fff; }

.solutions-header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.solutions-header__green {
  font-size: 70px;
  font-weight: 700;
  color: #428E4D;
  line-height: 1.5em;
}
.solutions-header__divider {
  width: 1px;
  height: 56px;
  background: #ccc;
  flex-shrink: 0;
}
.solutions-header__dark {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.solutions-card {
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.solutions-card--tubo        { background: #edf7f0; }
.solutions-card--timekeeper  { background: #e7f2fb; }
.solutions-card__logo {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.solutions-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  max-width: 380px;
  margin: 0;
}

/* ── HOME — TIMEKEEPING VIDEO ─────────────────────────── */
.home-video { padding: 80px 0; background: #fff; text-align: center; }
.home-video__heading {
  color: var(--color-primary);
  font-size: 32px;
  margin-bottom: 36px;
}
.home-video__wrap {
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #d0d0d0;
}
.home-video__player { width: 100%; display: block; }
.home-video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.2s, transform 0.2s;
  padding-left: 3px;
}
.home-video__play-btn:hover {
  background: rgba(255,255,255,0.45);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── HOME — EVENTS CAROUSEL ───────────────────────────── */
.home-events { padding: 80px 0 60px; background: #fff; }
.home-events__heading {
  text-align: center;
  color: var(--color-primary);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 36px;
}
.events-slider-wrap { width: 100%; overflow: hidden; }
@keyframes eventsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.events-row {
  display: flex;
  animation: eventsScroll 14s linear infinite;
  will-change: transform;
  margin-bottom: 4px;
}
.events-row:last-child { margin-bottom: 0; }
.events-row:hover { animation-play-state: paused; }
.events-img {
  height: 250px;
  flex-shrink: 0;
  overflow: hidden;
}
.events-img img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

/* ── HOME — OUR CLIENTS ───────────────────────────────── */
.home-clients { padding: 80px 0 60px; background: var(--color-bg-light); text-align: center; }
.home-clients h2 { color: var(--color-primary); font-size: 32px; margin-bottom: 56px; }
.clients-group__heading {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.clients-group__quote {
  color: var(--color-text-light, #666);
  font-size: 15px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 28px;
  text-align: center;
  font-style: italic;
}
.clients-carousel { position: relative; padding-bottom: 16px; }
.clients-carousel__track { display: grid; width: 100%; }
.clients-carousel__slide {
  grid-area: 1 / 1;
  display: block;
  padding: 0 0 8px;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  text-align: center;
}
.clients-carousel__slide.is-active { opacity: 1; pointer-events: auto; }
.clients-slide-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 56px;
  padding: 24px 0 8px;
}
.clients-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients-logo img {
  height: 150px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(0.15);
  transition: filter 0.2s, transform 0.2s;
}
.clients-logo img:hover { filter: none; transform: scale(1.06); }
.clients-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.clients-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.clients-carousel__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* ── HOME — CONTACT FORM ──────────────────────────────── */
.home-contact { padding: 0; background: #fff; }
.home-contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 560px;
}

/* Green gradient panel — flush, no radius */
.home-contact__panel {
  background: linear-gradient(90deg, #428E4D 25.26%, #88BD55 78.42%);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-contact__panel h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

/* Form */
.home-contact__form { display: flex; flex-direction: column; gap: 14px; padding: 56px 80px 56px 64px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
}
.form-req { color: var(--color-accent); }

.home-contact__form input,
.home-contact__form select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-primary);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-base);
  background: #f5faf7;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.home-contact__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B4332' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-color: #f5faf7;
  padding-right: 36px;
}
.home-contact__form input:focus,
.home-contact__form select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(107,175,60,0.12);
}
.home-contact__form input::placeholder { color: #aaa; }
.home-contact__form select option { color: #333; background: #fff; }

.btn-contact-send {
  width: 100%;
  padding: 13px;
  background: var(--color-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  font-family: var(--font-base);
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.btn-contact-send:hover  { background: #5a9c32; transform: translateY(-1px); }
.btn-contact-send:active { transform: none; }
.contact-msg { font-size: 14px; margin: 4px 0 0; min-height: 20px; }
.contact-msg--ok  { color: #2e7d32; }
.contact-msg--err { color: #c62828; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-anim="slide-up"]    { transform: translateY(36px); }
[data-anim="slide-left"]  { transform: translateX(-36px); }
[data-anim="slide-right"] { transform: translateX(36px); }
[data-anim="fade-in"]     { transform: none; }
[data-anim="scale-up"]    { transform: scale(0.86) translateY(18px); }

[data-anim].anim-done {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   SERVICES
   ============================================================ */
/* ── Services Hero ───────────────────────────────────── */
.services-hero {
  background: linear-gradient(135deg, #dce8f8 0%, #f0f8ea 100%);
  padding: 80px 0 96px;
  text-align: center;
}
.services-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
  margin: 0 auto 56px;
  max-width: 660px;
}
.services-hero__title strong { font-weight: 800; }

/* ── Chevron pipeline ─────────────────────────────────── */
.svc-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* All steps share the chevron shape */
.svc-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  min-width: 180px;
  padding: 0 40px 0 56px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  /* notch left + arrow right */
  clip-path: polygon(0% 0%, calc(100% - 28px) 0%, 100% 50%, calc(100% - 28px) 100%, 0% 100%, 28px 50%);
}
/* First step has no left notch */
.svc-step:first-child {
  padding-left: 32px;
  clip-path: polygon(0% 0%, calc(100% - 28px) 0%, 100% 50%, calc(100% - 28px) 100%, 0% 100%);
}

/* HRIS — outlined: green border via background, white inner via ::after */
.svc-step--outline {
  background: #6BAF3C;
  color: #6BAF3C;
}
.svc-step--outline::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #fff;
  clip-path: polygon(0% 0%, calc(100% - 25px) 0%, 100% 50%, calc(100% - 25px) 100%, 0% 100%);
}
.svc-step--outline span { position: relative; z-index: 1; }

/* Filled steps */
.svc-step--1 { background: #6BAF3C; color: #fff; }
.svc-step--2 { background: #4a9a2f; color: #fff; }
.svc-step--3 { background: #2b6e45; color: #fff; }
.svc-step--4 { background: #1B4332; color: #fff; }

.services-section         { padding: 80px 0; }
.services-section--alt    { background: var(--color-bg-light); }
.services-section h2      { color: var(--color-primary); margin-bottom: 16px; }
.services-section > .container > p { color: var(--color-text-light); max-width: 620px; }

/* Image layout helpers */
.svc-img-wrap        { display: flex; align-items: center; justify-content: center; }
.svc-img-wrap img    { max-width: 100%; height: auto; border-radius: 8px; }
.svc-grid--img-right { align-items: center; }
.svc-grid--img-left  { align-items: center; }

/* Pain points — checkmark style */
.painpoints               { margin-top: 32px; }
.painpoint-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.painpoint-item:last-child { border-bottom: none; }
.painpoint-check { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
.painpoint-item p { font-size: 15px; color: var(--color-text); margin: 0; }

/* Feature cards — 4-col when 4 items */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px 20px;
}
.feature-card__icon { width: 52px; height: 52px; object-fit: contain; margin-bottom: 16px; display: block; }
.feature-card h3 { font-size: 16px; color: var(--color-primary); margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--color-text-light); }

/* ── Timekeeping redesigned section ───────────────────── */
.tk-section {
  padding: 80px 0 96px;
  background: #fff;
}
.tk-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.tk-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}
.tk-title__black { display: block; color: #111; }
.tk-title__green { display: block; color: var(--color-primary); }
.tk-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}
.tk-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 60px;
}
.tk-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.tk-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tk-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px 20px;
}
.tk-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.tk-feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px;
}
.tk-feature-item p {
  font-size: 13px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.5;
}
.tk-callout {
  position: sticky;
  top: 100px;
}
.tk-callout p {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.45;
  margin: 0;
}
.tk-callout__green { color: var(--color-primary); }

.how-it-works    { display: flex; gap: 0; margin-top: 40px; }
.how-step        { flex: 1; text-align: center; padding: 0 12px; position: relative; }
.how-step::after {
  content: "→";
  position: absolute; right: -6px; top: 18px;
  font-size: 18px; color: var(--color-accent);
}
.how-step:last-child::after { display: none; }
.how-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.how-step h3 { font-size: 14px; font-weight: 600; color: var(--color-primary); margin-bottom: 6px; }
.how-step p  { font-size: 13px; color: var(--color-text-light); }

/* ── Payroll Painpoints section ────────────────────────── */
.ppp-section {
  padding: 80px 0;
  background: #f7f7f7;
}
.ppp-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.ppp-title-col {
  position: sticky;
  top: 100px;
}
.ppp-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0;
}
.ppp-list {
  border-top: 1px solid #ddd;
}
.ppp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid #ddd;
}
.ppp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #f4a0a0;
  stroke: #f4a0a0;
}
.ppp-item p {
  font-size: 16px;
  color: #222;
  line-height: 1.55;
  margin: 0;
}

/* ── How It Works section ──────────────────────────────── */
.service-tag--outline {
  background: rgba(255,255,255,0.85);
  color: var(--color-primary);
  border: 1px solid rgba(27,67,50,0.25);
}
.hiw-section {
  padding: 80px 0 96px;
  background-color: #ebebeb;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.hiw-title {
  font-size: 52px;
  font-weight: 800;
  color: #111;
  margin: 14px 0 18px;
  line-height: 1.1;
}
.hiw-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 auto 52px;
  max-width: 640px;
  line-height: 1.6;
}
.hiw-pipeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
}
.hiw-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--color-primary);
  min-width: 210px;
  padding: 22px 50px 22px 56px;
  clip-path: polygon(0% 0%, calc(100% - 28px) 0%, 100% 50%, calc(100% - 28px) 100%, 0% 100%, 28px 50%);
}
.hiw-step--first {
  padding-left: 34px;
  clip-path: polygon(0% 0%, calc(100% - 28px) 0%, 100% 50%, calc(100% - 28px) 100%, 0% 100%);
}
.hiw-step__num {
  position: absolute;
  top: 14px;
  right: 38px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.hiw-step__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.hiw-step__desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0;
}

.atm-card-section { padding: 80px 0; background: rgb(232,244,237); }
.atm-card-section h2 { color: var(--color-primary); margin-bottom: 16px; }
.atm-card-section p  { color: var(--color-text-light); max-width: 620px; }
.hris-section .service-tag,
.atm-card-section .service-tag,
.pay-salary-section .service-tag,
.payroll-section .service-tag {
  background: none;
  color: #165C4F;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  text-transform: none;
  padding: 0;
  border-radius: 0;
}

/* ── Pay Government section ────────────────────────────── */
.service-tag--mint {
  background: #d6ede3;
  color: var(--color-primary);
  border-radius: 999px;
  padding: 6px 18px;
}
.gov-section {
  padding: 100px 0 110px;
  background: #fff;
  text-align: center;
}
.gov-title {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  margin: 24px auto 32px;
  max-width: 760px;
}
.gov-title__green { color: var(--color-primary); }
.gov-subtitle {
  font-size: 17px;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.gov-available {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* ============================================================
   ABOUT US
   ============================================================ */

/* ── About Us: Ventaja Band ─────────────────────────────── */
.about-ventaja {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.about-ventaja__overlay {
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.88);
  display: flex; align-items: center;
  width: 100%;
}
.about-ventaja__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 72px 0;
}
.about-ventaja__brand      { flex-shrink: 0; }
.about-ventaja__logo       { width: 220px; height: auto; }
.about-ventaja__text h2    { color: #1B2D5E; font-size: 36px; font-weight: 700; margin-bottom: 16px; line-height: 1.25; }
.about-ventaja__text p     { color: #555; font-size: 17px; line-height: 1.7; max-width: 480px; margin: 0; }

/* ── About Us: Team ─────────────────────────────────────── */
.about-team   { background: #fff; padding: 80px 0 0; }
.team-heading { text-align: center; font-size: 32px; font-weight: 600; color: #2e7d52; margin-bottom: 52px; }

/* CEO row */
.team-row-ceo { display: flex; justify-content: center; margin-bottom: 48px; }
.team-member__photo--lg { width: 190px !important; height: 190px !important; }

/* 3-col grid — items align to top so expanded cards don't shift neighbors */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto;
}

/* Photo circle */
.team-member__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  border: 4px solid #165C4F;
  box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.2);
  background: #fff;
  flex-shrink: 0;
}
.team-member__photo .placeholder-img,
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* Expandable card */
.team-card {
  background: #fff;
  border: 1px solid #e4ede8;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  text-align: center;
}
.team-card--expandable {
  cursor: pointer;
  user-select: none;
}
.team-card--expandable:hover,
.team-card--expandable:focus {
  border-color: var(--color-accent);
  box-shadow: 0 8px 28px rgba(107,175,60,0.18);
  transform: translateY(-4px);
  outline: none;
}
.team-card--expandable:hover .team-member__photo img {
  transform: scale(1.07);
}
.team-member__photo img {
  transition: transform 0.35s ease;
}

/* Card top — always visible */
.team-card__top {
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-card__top h3    { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; line-height: 1.3; }
.team-card__role      { font-size: 11px; color: #777; line-height: 1.4; margin: 0; }

/* ── Team member modal ───────────────────────────────── */
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-slide-up {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.team-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modal-fade-in 0.2s ease;
}
.team-modal-overlay.is-open { display: flex; }

.team-modal {
  background: #fff;
  border-radius: 10px;
  max-width: 780px;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  animation: modal-slide-up 0.25s ease;
}

.team-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #555;
  padding: 4px 6px;
  z-index: 1;
}
.team-modal__close:hover { color: #111; }

.team-modal__photo {
  width: 220px;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 40px 32px;
}
.team-modal__photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-modal__info {
  flex: 1;
  padding: 40px 48px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.team-modal__info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
  padding-right: 32px;
}
.team-modal__info > p {
  font-size: 14px;
  color: #777;
  margin: 0 0 20px;
}
.team-modal__divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0 0 0;
}
.team-modal__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  font-size: 15px;
}
.team-modal__label {
  font-weight: 600;
  color: #111;
  min-width: 54px;
}
.team-modal__value {
  color: #333;
  text-decoration: none;
}
.team-modal__value:hover { text-decoration: underline; }

/* CEO row — plain card, no border */
.team-row-ceo .team-card {
  border: none;
  box-shadow: none;
  background: transparent;
}
.team-row-ceo .team-card__top { padding-bottom: 0; }

/* Green wave */
.about-wave     { margin-top: 64px; line-height: 0; }
.about-wave svg { display: block; width: 100%; height: 150px; }

/* ============================================================
   FAQs
   ============================================================ */
/* ── FAQs PAGE ────────────────────────────────────────── */
.faqs-hero {
  background: var(--color-bg-light);
  padding: 64px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.faqs-hero h1   { color: var(--color-primary); margin: 12px 0 14px; }
.faqs-hero__sub { color: var(--color-text-light); font-size: 16px; margin: 0; }

.faqs-body { padding: 56px 0 90px; }

/* Tabs */
.faq-tabs {
  display: flex;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 36px;
  gap: 0;
}
.faq-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.faq-tab:hover  { color: var(--color-primary); }
.faq-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-accent);
  font-weight: 700;
}

.faq-panel        { display: none; }
.faq-panel.active { display: block; }

/* Accordion */
details.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
details.faq-item summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  -webkit-appearance: none;
  color: var(--color-text);
  transition: background 0.15s;
}
details.faq-item summary:hover { background: var(--color-bg-light); }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  margin-left: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s;
}
details.faq-item[open] summary::after { transform: rotate(180deg); }
details.faq-item[open] summary { color: var(--color-primary); font-weight: 600; }
.faq-answer { padding: 4px 20px 20px; font-size: 15px; color: var(--color-text-light); line-height: 1.75; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-hero { padding: 80px 0 64px; }
.pricing-hero h1 { color: var(--color-primary); margin-bottom: 12px; font-size: 40px; max-width: 680px; }
.pricing-hero > .container > p { color: var(--color-text-light); max-width: 560px; margin-top: 8px; font-size: 16px; }

/* Image-based pricing sections */
.pricing-section        { padding: 72px 0 80px; }
.pricing-section--alt   { background: var(--color-bg-light); }
.pricing-section__heading {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 28px;
}
.pricing-img-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}
.pricing-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.pricing-img-wrap--detail {
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.pricing-cta {
  margin-top: 32px;
}

/* Banner */
.pricing-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
.pricing-banner__overlay {
  position: absolute; inset: 0;
  background: rgba(27, 67, 50, 0.78);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 24px;
}
.pricing-banner__text   { text-align: center; color: var(--color-white); max-width: 560px; }
.pricing-banner__text h2 { margin-bottom: 10px; font-size: 32px; }
.pricing-banner__text p  { font-size: 17px; opacity: 0.9; }

/* Billing */
.pricing-billing { padding: 80px 0; background: #fff; }

.billing-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.billing-img-col img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.billing-content h2 {
  color: var(--color-primary);
  font-size: 32px;
  margin: 0 0 16px;
}
.billing-divider {
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 0 28px;
  border: none;
}
.billing-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .control-body          { grid-template-columns: 1fr; gap: 40px; }
  .control-header__green { font-size: 48px; }
  .control-header__dark  { font-size: 22px; }
  .home-contact__inner   { grid-template-columns: 1fr; }
  .home-contact__panel   { min-height: 200px; padding: 48px 40px; }
  .home-contact__panel h2 { font-size: 28px; }
  .home-contact__form    { padding: 40px 32px; }
  .home-promo__inner     { grid-template-columns: 1fr; gap: 36px; }
  .solutions-grid        { grid-template-columns: 1fr; gap: 20px; }
  .solutions-header__green { font-size: 48px; }
  .solutions-header__dark  { font-size: 22px; }
  .about-ventaja__inner  { flex-direction: column; gap: 24px; text-align: center; }

  /* Pricing */
  .billing-grid            { grid-template-columns: 1fr; gap: 32px; }
  .billing-img-col         { display: none; }
  .pricing-hero h1         { font-size: 30px; }
  .pricing-section__heading { font-size: 24px; }
  .pricing-banner__text h2 { font-size: 26px; }

  /* Services — timekeeping */
  .tk-top    { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .tk-bottom { grid-template-columns: 1fr; gap: 32px; }
  .tk-title  { font-size: 34px; }
  .tk-callout { position: static; }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-gov-screens { grid-template-columns: repeat(2, 1fr); }

  /* Services — payroll pain points */
  .ppp-grid      { grid-template-columns: 1fr; gap: 32px; }
  .ppp-title-col { position: static; }
  .ppp-title     { font-size: 28px; }

  /* Services — how it works pipeline */
  .hiw-title    { font-size: 38px; }
  .hiw-subtitle { font-size: 16px; margin-bottom: 36px; }
  .hiw-pipeline { flex-wrap: wrap; gap: 6px; }
  .hiw-step     { min-width: 150px; padding: 18px 38px 18px 44px; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }

  .grid-2col     { grid-template-columns: 1fr; }
  .grid-3col     { grid-template-columns: 1fr; }
  .feature-cards   { grid-template-columns: repeat(2, 1fr); }
  .svc-gov-screens { grid-template-columns: repeat(2, 1fr); }
  .clients-grid  { grid-template-columns: repeat(3, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-it-works  { flex-direction: column; }
  .how-step::after { display: none; }

  /* Mobile nav */
  .nav-toggle  { display: flex; }
  .primary-nav { flex: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-white);
    padding: 16px 24px 24px;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-toggle     { order: -1; margin-left: 0; margin-right: 12px; }
  .site-logo      { order: 0; }
  .ventaja-badge  { margin-left: auto; }

  /* Home */
  .hero-slide__content h1       { font-size: 30px; }
  .hero-slide__content          { padding: 70px 0; }
  .hero-slide__subtitle         { font-size: 15px; }
  .home-hero                    { min-height: 480px; }
  .events-img            { height: 160px; }
  .clients-slide-logos { gap: 20px 32px; }
  .svc-pipeline          { flex-wrap: wrap; gap: 8px; }
  .svc-step              { min-width: 100px; font-size: 12px; height: 60px; padding: 0 28px 0 36px; }
  .svc-step:first-child  { padding-left: 20px; }
  .services-hero__title  { font-size: 22px; }
  .faq-tabs              { overflow-x: auto; }
  .faq-tab               { padding: 12px 18px; font-size: 14px; white-space: nowrap; }

  /* Team grid — 2 columns on tablet */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  /* Header */
  .site-header .container { padding: 0 16px; }
  .ventaja-badge img       { width: 80px; }

  /* Typography */
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }

  /* Home hero */
  .home-hero                { min-height: 380px; }
  .hero-slide__content      { padding: 50px 0; text-align: center; }
  .hero-slide__content h1   { font-size: 24px; line-height: 1.3; }
  .hero-slide__subtitle     { font-size: 14px; margin-bottom: 24px; }
  .btn-hero                 { font-size: 14px; padding: 12px 20px; }

  /* Home sections */
  .home-promo            { padding: 48px 0; }
  .home-promo__text h2   { font-size: 22px; }
  .home-onboard          { padding: 64px 0; }
  .home-onboard__inner h2 { font-size: 26px; }
  .home-control          { padding: 56px 0; }
  .control-body          { grid-template-columns: 1fr; gap: 32px; }
  .control-header        { gap: 16px; }
  .control-header__green { font-size: 38px; }
  .control-header__divider { height: 40px; }
  .control-header__dark  { font-size: 18px; }
  .home-solutions        { padding: 56px 0; }
  .solutions-grid        { grid-template-columns: 1fr; gap: 16px; }
  .solutions-card        { padding: 40px 28px; gap: 24px; }
  .solutions-header__green { font-size: 38px; }
  .solutions-header__divider { height: 36px; }
  .solutions-header__dark  { font-size: 18px; }
  .events-img            { height: 160px; }
  .clients-slide-logos { gap: 16px 24px; }
  .clients-logo img { height: 90px; max-width: 180px; }
  .form-row-2            { grid-template-columns: 1fr; }
  .home-contact__panel   { min-height: 140px; padding: 32px 24px; }
  .home-contact__form    { padding: 32px 24px; }

  /* Footer */
  .footer-inner          { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav--grid      { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal-nav      { flex-wrap: wrap; justify-content: center; gap: 8px 16px; }

  /* About — ventaja band */
  .about-ventaja          { min-height: 320px; }
  .about-ventaja__inner  { flex-direction: column; gap: 28px; text-align: center; padding: 48px 0; }
  .about-ventaja__logo   { width: 160px; }
  .about-ventaja__text h2 { font-size: 24px; }
  .about-ventaja__text p  { font-size: 15px; }

  /* About — team grid: 2 columns on mobile */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 100%;
  }
  .team-member__photo     { width: 110px; height: 110px; }
  .team-member__photo--lg { width: 140px !important; height: 140px !important; }
  .team-card__top h3      { font-size: 12px; }
  .team-card__role        { font-size: 10px; }
  .team-heading { font-size: 24px; margin-bottom: 36px; }
  .team-row-ceo { margin-bottom: 32px; }

  .team-modal { flex-direction: column; max-height: 92vh; overflow-y: auto; }
  .team-modal__photo { width: 100%; padding: 28px 0 0; justify-content: center; }
  .team-modal__info { padding: 20px 24px 28px; }

  /* Misc */
  .section                { padding: 56px 0; }
  .clients-grid           { grid-template-columns: repeat(2, 1fr); }

  /* Pricing mobile */
  .pricing-hero           { padding: 48px 0 36px; }
  .pricing-hero h1        { font-size: 24px; }
  .pricing-section__heading { font-size: 20px; margin-bottom: 20px; }
  .pricing-banner__text h2 { font-size: 22px; }
  .pricing-banner__text p  { font-size: 15px; }
  .pricing-section        { padding: 48px 0 56px; }
  .pricing-billing        { padding: 48px 0; }
  .billing-content h2     { font-size: 24px; }

  /* Services mobile */
  .services-section       { padding: 48px 0; }
  .services-hero          { padding: 48px 0 64px; }
  .services-hero__title   { font-size: 18px; margin-bottom: 36px; }
  .tk-section             { padding: 48px 0 64px; }
  .tk-title               { font-size: 28px; }
  .tk-callout p           { font-size: 22px; }
  .feature-cards          { grid-template-columns: 1fr 1fr; gap: 16px; }
  .svc-gov-screens        { grid-template-columns: 1fr; }

  /* Services — payroll pain points mobile */
  .ppp-section  { padding: 48px 0; }
  .ppp-title    { font-size: 22px; }

  /* Services — how it works mobile: stack vertically */
  .hiw-section   { padding: 48px 0 64px; }
  .hiw-title     { font-size: 26px; }
  .hiw-subtitle  { font-size: 14px; margin-bottom: 28px; }
  .hiw-pipeline  { flex-direction: column; align-items: stretch; gap: 4px; }
  .hiw-step,
  .hiw-step--first {
    min-width: unset;
    clip-path: none;
    border-radius: 10px;
    padding: 16px 20px 16px 20px;
    align-items: flex-start;
  }
  .hiw-step__num   { position: static; display: block; margin-bottom: 4px; }
  .hiw-step__title { font-size: 15px; }

  /* Home — misc headings */
  .home-onboard__inner h2  { font-size: 24px; }
  .home-video__heading     { font-size: 24px; margin-bottom: 24px; }
  .home-events__heading    { font-size: 24px; margin-bottom: 24px; }
  .home-clients h2         { font-size: 24px; margin-bottom: 36px; }
  .home-contact__panel h2  { font-size: 22px; }

  /* FAQs */
  .faqs-hero    { padding: 40px 0 36px; }
  .faqs-body    { padding: 40px 0 64px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 380px)
   ============================================================ */
@media (max-width: 380px) {
  .team-grid                { grid-template-columns: 1fr; max-width: 240px; }
  .hero-slide__content h1   { font-size: 21px; }
  .home-contact__panel h2   { font-size: 20px; }
  .home-contact__form       { padding: 28px 16px; }
  .home-contact__panel      { padding: 28px 16px; }
  .hiw-title                { font-size: 22px; }
  .tk-title                 { font-size: 24px; }
  .control-header__green,
  .solutions-header__green  { font-size: 30px; }
  .control-header__dark,
  .solutions-header__dark   { font-size: 15px; }
  .control-header__divider,
  .solutions-header__divider { height: 30px; }
  .solutions-card           { padding: 28px 20px; }
  .pricing-hero h1          { font-size: 21px; }
  .pricing-section__heading { font-size: 18px; }
  .footer-app__row          { flex-wrap: wrap; }
  .container                { padding: 0 16px; }
}

