/*
Theme Name: Simple Growth
Theme URI: https://partners.simplicityitinc.com
Version: 2.0.0
Requires at least: WordPress 6.3
Tested up to: WordPress 6.7
Requires PHP: 8.1
Text Domain: partner-os
Description: A dark, premium WordPress theme for Simple Growth by Simplicity IT — AI-powered revenue and time management tools for every service business.
Author: Simplicity IT Inc
Author URI: https://simplicityitinc.com
*/

/* ============================================================================
   CSS CUSTOM PROPERTIES & DESIGN TOKENS
   ============================================================================ */

:root {
  --pos-navy:          #162C43;
  --pos-navy-dark:     #0a1929;
  --pos-navy-card:     #1e3a55;
  --pos-navy-border:   rgba(65,181,146,0.15);
  --pos-green:         #41B592;
  --pos-green-light:   #5ecba8;
  --pos-green-glow:    rgba(65,181,146,0.25);
  --pos-azure:         #0078D4;
  --pos-azure-light:   #50e6ff;
  --pos-white:         #ffffff;
  --pos-white-70:      rgba(255,255,255,0.70);
  --pos-white-50:      rgba(255,255,255,0.50);
  --pos-white-30:      rgba(255,255,255,0.30);
  --pos-white-10:      rgba(255,255,255,0.10);
  --pos-font-display: 'DM Sans', sans-serif;
  --pos-font-body:    'DM Sans', 'Inter', sans-serif;
  --pos-font-mono:    'DM Mono', 'Fira Code', monospace;
  --pos-section-pad: 6rem;
  --pos-container:   1280px;
  --pos-radius:      12px;
  --pos-radius-lg:   20px;
  --pos-radius-sm:   8px;
  --pos-shadow-card: 0 4px 24px rgba(0,0,0,0.35);
  --pos-shadow-glow: 0 0 40px rgba(65,181,146,0.15);
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--pos-navy-dark);
  color: var(--pos-white-70);
  font-family: var(--pos-font-body);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pos-container {
  max-width: var(--pos-container);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .pos-container { padding: 0 1rem; }
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pos-font-display);
  font-weight: 800;
  line-height: 1.1;
  color: var(--pos-white);
  margin-bottom: 1rem;
  margin-top: 0;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.75rem; letter-spacing: -0.015em; }
h3 { font-size: 2rem; letter-spacing: -0.01em; }
h4 { font-size: 1.5rem; }
p { margin-bottom: 1.5rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }
a { color: var(--pos-green); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--pos-green-light); }
strong, b { font-weight: 700; color: var(--pos-white); }

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }
}

/* ============================================================================
   HEADER / NAVIGATION
   ============================================================================ */

.pos-header {
  position: sticky;
  top: 0;
  background-color: var(--pos-navy);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.pos-header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  background-color: rgba(22,44,67,0.98);
}

.pos-header__wrapper {
  max-width: var(--pos-container);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pos-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pos-white);
  font-family: var(--pos-font-display);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.pos-logo img { max-height: 40px; width: auto; }
.pos-logo__text { font-size: 1rem; line-height: 1.2; }
.pos-logo__badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pos-green);
  background: rgba(65,181,146,0.1);
  border: 1px solid rgba(65,181,146,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-left: 0.25rem;
}

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

.pos-nav__link {
  color: var(--pos-white-70);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.pos-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background-color: var(--pos-green);
  transition: width 0.3s ease;
}

.pos-nav__link:hover { color: var(--pos-white); }
.pos-nav__link:hover::after { width: 100%; }

.pos-nav__item--dropdown { position: relative; }

.pos-nav__dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: var(--pos-navy-card);
  border: 1px solid var(--pos-navy-border);
  border-radius: var(--pos-radius);
  min-width: 260px;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  box-shadow: var(--pos-shadow-card);
  list-style: none;
}

.pos-nav__item--dropdown:hover .pos-nav__dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.pos-nav__dropdown a {
  display: block;
  padding: 0.65rem 1.5rem;
  color: var(--pos-white-70);
  font-size: 0.9rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pos-nav__dropdown a:hover {
  background-color: rgba(65,181,146,0.1);
  color: var(--pos-white);
}

.pos-cta-nav { display: flex; gap: 1rem; align-items: center; }

.pos-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.pos-hamburger__line {
  width: 24px; height: 2px;
  background-color: var(--pos-white);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .pos-nav, .pos-cta-nav { display: none; }
  .pos-hamburger { display: flex; }
  .pos-header__wrapper { padding: 1rem 1.5rem; }

  .pos-nav--mobile {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background-color: var(--pos-navy-card);
    border-top: 1px solid var(--pos-navy-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  .pos-nav--mobile.active { max-height: 600px; }

  .pos-nav--mobile a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--pos-navy-border);
    color: var(--pos-white-70);
  }

  .pos-nav--mobile a:hover { color: var(--pos-white); }

  .pos-nav--mobile .pos-btn {
    margin: 1rem 1.5rem;
    text-align: center;
  }

  .pos-nav--mobile__label {
    display: block;
    padding: 0.75rem 1.5rem 0.25rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pos-white-30);
    border-top: 1px solid var(--pos-navy-border);
  }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.pos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--pos-radius-sm);
  font-family: var(--pos-font-body);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.5;
}

.pos-btn--primary {
  background-color: var(--pos-green);
  color: var(--pos-white);
  border: 2px solid var(--pos-green);
}

.pos-btn--primary:hover {
  background-color: var(--pos-green-light);
  border-color: var(--pos-green-light);
  box-shadow: 0 8px 20px rgba(65,181,146,0.25);
  transform: translateY(-2px);
  color: var(--pos-white);
}

.pos-btn--ghost {
  background-color: transparent;
  color: var(--pos-green);
  border: 2px solid var(--pos-green);
}

.pos-btn--ghost:hover {
  background-color: rgba(65,181,146,0.1);
  border-color: var(--pos-green-light);
  color: var(--pos-green-light);
}

.pos-btn--white {
  background-color: rgba(255,255,255,0.08);
  color: var(--pos-white-70);
  border: 1px solid rgba(255,255,255,0.15);
}

.pos-btn--white:hover {
  background-color: rgba(255,255,255,0.12);
  color: var(--pos-white);
}

.pos-btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.pos-btn--md { padding: 0.75rem 1.75rem; font-size: 1rem; }
.pos-btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ============================================================================
   SECTIONS
   ============================================================================ */

.pos-section {
  padding: var(--pos-section-pad) 2rem;
  max-width: var(--pos-container);
  margin: 0 auto;
}

.pos-section--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.pos-section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pos-green);
  margin-bottom: 0.75rem;
}

.pos-section__title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

.pos-section__subtitle {
  font-size: 1.1rem;
  color: var(--pos-white-50);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pos-section { padding: 3rem 1rem; }
  .pos-section__title { font-size: 1.75rem; }
}

/* ============================================================================
   HERO
   ============================================================================ */

.pos-hero {
  padding: 8rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,25,41,1) 0%, rgba(30,58,85,0.5) 50%, rgba(10,25,41,1) 100%);
  position: relative;
}

.pos-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(65,181,146,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pos-hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pos-green);
  margin-bottom: 1.5rem;
}

.pos-hero__title {
  font-size: 4rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.05;
}

.pos-hero__subtitle {
  font-size: 1.2rem;
  color: var(--pos-white-50);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.pos-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pos-hero { padding: 5rem 1rem 3rem; }
  .pos-hero__title { font-size: 2.5rem; }
  .pos-hero__subtitle { font-size: 1rem; }
}

/* ============================================================================
   OUTCOMES STRIP
   ============================================================================ */

.pos-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--pos-container);
  margin: -2rem auto 0;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.pos-outcomes__item {
  text-align: center;
  background: var(--pos-navy-card);
  border: 1px solid var(--pos-navy-border);
  border-radius: var(--pos-radius);
  padding: 1.5rem 1rem;
}

.pos-outcomes__value {
  display: block;
  font-family: var(--pos-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pos-green);
}

.pos-outcomes__label {
  display: block;
  font-size: 0.8rem;
  color: var(--pos-white-50);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .pos-outcomes { grid-template-columns: repeat(2, 1fr); margin-top: -1rem; padding: 0 1rem; }
}

/* ============================================================================
   CARDS
   ============================================================================ */

.pos-card {
  background: var(--pos-navy-card);
  border: 1px solid var(--pos-navy-border);
  border-radius: var(--pos-radius);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pos-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pos-shadow-glow);
}

.pos-card--highlighted {
  border-color: rgba(65,181,146,0.5);
  background: rgba(65,181,146,0.06);
}

.pos-card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.pos-card__badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--pos-green);
  color: var(--pos-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 8px 8px;
}

.pos-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pos-card__category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
  display: inline-block;
}

.pos-card__desc {
  font-size: 0.88rem;
  color: var(--pos-white-50);
  line-height: 1.6;
}

.pos-card__price {
  font-family: var(--pos-font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--pos-white);
}

.pos-card__period {
  font-size: 0.9rem;
  color: var(--pos-white-50);
}

.pos-card__features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.pos-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--pos-white-70);
}

.pos-card__features li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--pos-green);
}

.pos-card__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================================================
   GRIDS
   ============================================================================ */

.pos-grid { display: grid; gap: 1.5rem; }
.pos-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pos-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pos-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .pos-grid--3, .pos-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pos-grid--2, .pos-grid--3, .pos-grid--4 { grid-template-columns: 1fr; }
}

/* ============================================================================
   CTA BANNER
   ============================================================================ */

.pos-cta-banner {
  background: linear-gradient(135deg, var(--pos-navy-card), rgba(65,181,146,0.08));
  border: 1px solid var(--pos-navy-border);
  border-radius: var(--pos-radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--pos-container);
  margin: 0 auto;
}

.pos-cta-banner__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pos-cta-banner__text {
  font-size: 0.95rem;
  color: var(--pos-white-50);
  max-width: 560px;
}

@media (max-width: 768px) {
  .pos-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

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

.pos-footer {
  background-color: var(--pos-navy);
  border-top: 1px solid var(--pos-navy-border);
  padding: 4rem 2rem 2rem;
  margin-top: var(--pos-section-pad);
}

.pos-footer__grid {
  max-width: var(--pos-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.pos-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pos-white-50);
  margin-bottom: 1.25rem;
}

.pos-footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pos-footer__links a {
  color: var(--pos-white-70);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.pos-footer__links a:hover { color: var(--pos-white); }

.pos-footer__bottom {
  max-width: var(--pos-container);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--pos-navy-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--pos-white-50);
}

.pos-footer__tagline {
  font-size: 0.9rem;
  color: var(--pos-white-50);
  line-height: 1.6;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .pos-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .pos-footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ============================================================================
   SCROLL REVEAL
   ============================================================================ */

.pos-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================================
   MODAL
   ============================================================================ */

.pos-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pos-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.pos-modal {
  background: var(--pos-navy-card);
  border: 1px solid var(--pos-navy-border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  margin: 1rem;
}

.pos-modal__title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.pos-modal__subtitle {
  color: var(--pos-white-50);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* ============================================================================
   FORMS
   ============================================================================ */

.pos-form { display: flex; flex-direction: column; gap: 1rem; }

.pos-form__label {
  display: block;
  color: var(--pos-white-50);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.pos-form__input,
.pos-form__select,
.pos-form__textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--pos-white);
  font-size: 0.9rem;
  font-family: var(--pos-font-body);
  transition: border-color 0.3s ease;
}

.pos-form__input:focus,
.pos-form__select:focus,
.pos-form__textarea:focus {
  outline: none;
  border-color: var(--pos-green);
}

.pos-form__textarea { min-height: 120px; resize: vertical; }

.pos-form__submit {
  background: var(--pos-green);
  color: var(--pos-white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--pos-font-body);
  transition: background-color 0.3s ease;
}

.pos-form__submit:hover { background: var(--pos-green-light); }
.pos-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================================================
   COOKIE CONSENT
   ============================================================================ */

.pos-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--pos-navy-card);
  border-top: 1px solid var(--pos-navy-border);
  padding: 1.25rem 2rem;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.pos-cookie-banner.hidden { display: none; }

.pos-cookie-banner__text {
  font-size: 0.88rem;
  color: var(--pos-white-70);
}

.pos-cookie-banner__actions { display: flex; gap: 0.75rem; }

@media (max-width: 768px) {
  .pos-cookie-banner { flex-direction: column; text-align: center; }
}

/* ============================================================================
   PARTNER TIERS (Landing Page)
   ============================================================================ */

.pos-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pos-tier-card {
  position: relative;
  background: var(--pos-navy-card);
  border: 1px solid var(--pos-navy-border);
  border-radius: var(--pos-radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pos-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pos-shadow-glow);
}

.pos-tier-card--highlighted {
  border-color: rgba(65,181,146,0.5);
  background: rgba(65,181,146,0.06);
}

@media (max-width: 768px) {
  .pos-tiers { grid-template-columns: 1fr; }
}

/* ============================================================================
   PRICING TOGGLE
   ============================================================================ */

.pos-pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.pos-pricing-toggle__label {
  font-size: 0.9rem;
  color: var(--pos-white-50);
  font-weight: 500;
  cursor: pointer;
}

.pos-pricing-toggle__label--active { color: var(--pos-white); }

.pos-pricing-toggle__switch {
  width: 48px; height: 26px;
  background: var(--pos-navy-card);
  border: 2px solid var(--pos-navy-border);
  border-radius: 13px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.pos-pricing-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--pos-green);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.pos-pricing-toggle__switch.active::after {
  transform: translateX(22px);
}

/* ============================================================================
   INTEGRATION GRID SPECIFIC
   ============================================================================ */

.pos-integration-byol {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pos-white-30);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.pos-integration-subtitle {
  font-size: 0.8rem;
  color: var(--pos-green);
  font-weight: 500;
  margin: 0;
}

/* ============================================================================
   SVG CHECK ICON UTILITY
   ============================================================================ */

.pos-check {
  flex-shrink: 0;
  color: var(--pos-green);
  margin-top: 0.15rem;
}

/* Fix: outcomes grid — horizontal landscape cards, centered */
.pos-outcomes {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}
.pos-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1000px;
}
.pos-outcomes .pos-outcomes__item {
  padding: 1.25rem 2.5rem;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pos-outcomes .pos-outcomes__value {
  font-size: 1.5rem;
}
.pos-outcomes .pos-outcomes__label {
  font-size: 0.7rem;
}
@media (max-width: 768px) {
  .pos-outcomes__grid { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
}
