/* ============================================
   WORKFORCE PRO — Design System
   Palette: Copper & Slate
   Fonts: Cormorant Garamond + Manrope
   ============================================ */

:root {
  --copper:       #B87333;
  --copper-light: #D4A574;
  --copper-pale:  #F0DCC8;
  --slate-dark:   #2F3640;
  --slate:        #3D4A56;
  --slate-mid:    #5A6A78;
  --slate-light:  #8A9BAA;
  --cream:        #F5F0EB;
  --cream-dark:   #EDE5DA;
  --white:        #FFFFFF;
  --black:        #0F1318;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(47,54,64,0.08);
  --shadow-md:  0 8px 32px rgba(47,54,64,0.12);
  --shadow-lg:  0 24px 64px rgba(47,54,64,0.16);
  --shadow-xl:  0 40px 100px rgba(47,54,64,0.20);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--slate-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 600;
}

em { font-style: italic; color: var(--copper); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.btn--primary:hover {
  background: #9E6228;
  border-color: #9E6228;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,115,51,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-dark);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--copper); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--outline {
  background: transparent;
  color: var(--slate-dark);
  border-color: var(--slate-mid);
}
.btn--outline:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translateY(-1px);
}

.btn--lg { padding: 0.85rem 2rem; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(184,115,51,0.1);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-tag--light {
  color: var(--copper-light);
  background: rgba(212,165,116,0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-header--light .section-title { color: var(--white); }
.section-header--light .section-sub { color: rgba(255,255,255,0.7); }

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-mid);
  line-height: 1.7;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(245,240,235,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--copper);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-dark);
}
.nav__logo-text em { font-style: italic; color: var(--copper); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__links a:hover { color: var(--copper); background: rgba(184,115,51,0.06); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 1.5rem 2rem;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.5rem; }
.nav__mobile a {
  display: block;
  padding: 0.65rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.nav__mobile a:last-child { border-bottom: none; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 60%, #E8D8C4 100%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,115,51,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,115,51,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--slate-dark);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--slate-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-dark);
  display: block;
  line-height: 1;
}
.trust-item strong + span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--copper);
}
.trust-item p {
  font-size: 0.78rem;
  color: var(--slate-mid);
  margin-top: 0.25rem;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* ============ DASHBOARD CARD ============ */
.hero__visual {
  position: relative;
}

.dashboard-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(184,115,51,0.1);
  position: relative;
  z-index: 2;
}

.dashboard-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dc-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-dark);
}
.dc-subtitle {
  font-size: 0.75rem;
  color: var(--slate-light);
  margin-top: 0.15rem;
  display: block;
}

.dc-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22C55E;
  background: rgba(34,197,94,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.status-dot--live {
  background: #22C55E;
  animation: pulse-dot 1.5s infinite;
}

.dashboard-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.dc-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--slate-dark);
  line-height: 1;
}
.dc-stat__num--amber { color: #F59E0B; }
.dc-stat__num--green { color: #22C55E; }
.dc-stat__label {
  font-size: 0.72rem;
  color: var(--slate-light);
  margin-top: 0.25rem;
  display: block;
  font-weight: 500;
}

.dashboard-card__chart { margin-bottom: 1.25rem; }

.chart-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-mid);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
  margin-bottom: 0.5rem;
}

.chart-bar-group {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex-direction: row;
  position: relative;
}
.chart-bar-group span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--slate-light);
  font-weight: 500;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 1s ease;
}
.chart-bar--demand { background: var(--copper-pale); }
.chart-bar--staff  { background: var(--copper); }

.chart-legend {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.chart-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--slate-mid);
  font-weight: 500;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}
.legend-dot--demand { background: var(--copper-pale); }
.legend-dot--staff  { background: var(--copper); }

.dashboard-card__alerts { display: flex; flex-direction: column; gap: 0.5rem; }

.alert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}
.alert-item--warn {
  background: rgba(245,158,11,0.08);
  color: #92400E;
}
.alert-item--info {
  background: rgba(59,130,246,0.08);
  color: #1E40AF;
}

/* Floating cards */
.hero__float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(184,115,51,0.12);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}
.hero__float-card div strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--slate-dark);
}
.hero__float-card div span {
  font-size: 0.7rem;
  color: var(--slate-mid);
}

.hero__float-card--1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}
.hero__float-card--2 {
  bottom: 30px;
  left: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============ LOGOS ============ */
.logos {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  overflow: hidden;
}

.logos__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 1.5rem;
}

.logos__track { overflow: hidden; }

.logos__inner {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.logo-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--slate-light);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.logo-item:hover { color: var(--copper); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ FEATURES ============ */
.features {
  padding: 7rem 0;
  background: var(--cream);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,115,51,0.2);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate) 100%);
  color: var(--white);
  border-color: transparent;
}
.feature-card--large h3 { color: var(--white); }
.feature-card--large p { color: rgba(255,255,255,0.7); }
.feature-card--large .feature-card__icon { background: rgba(184,115,51,0.2); color: var(--copper-light); }
.feature-card--large::before { background: linear-gradient(90deg, var(--copper-light), var(--copper-pale)); }

.feature-card--accent {
  background: linear-gradient(135deg, rgba(184,115,51,0.06) 0%, rgba(212,165,116,0.1) 100%);
  border-color: rgba(184,115,51,0.2);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(184,115,51,0.1);
  color: var(--copper);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--slate-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--slate-mid);
  line-height: 1.7;
}

.feature-card__tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-light);
  background: rgba(184,115,51,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ============ MODULES ============ */
.modules {
  background: var(--slate-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.modules::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184,115,51,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  cursor: default;
}

.module-item:nth-child(even) { border-right: none; }
.module-item:nth-last-child(-n+2) { border-bottom: none; }

.module-item:hover {
  background: rgba(184,115,51,0.06);
}

.module-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(184,115,51,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  transition: color var(--transition);
}
.module-item:hover .module-item__num { color: var(--copper); }

.module-item__content { flex: 1; }
.module-item__content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.module-item__content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.module-item__arrow {
  font-size: 1.25rem;
  color: rgba(184,115,51,0.3);
  flex-shrink: 0;
  transition: all var(--transition);
  margin-top: 0.1rem;
}
.module-item:hover .module-item__arrow {
  color: var(--copper);
  transform: translateX(4px);
}

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--copper);
  padding: 4rem 0;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-block strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-block span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.stat-block p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 7rem 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card--featured {
  background: var(--slate-dark);
  border-color: transparent;
  transform: translateY(-12px);
}
.testimonial-card--featured:hover { transform: translateY(-16px); }
.testimonial-card--featured .testimonial-card__quote { color: rgba(184,115,51,0.4); }
.testimonial-card--featured .testimonial-card__text { color: rgba(255,255,255,0.85); }
.testimonial-card--featured .testimonial-card__author strong { color: var(--white); }
.testimonial-card--featured .testimonial-card__author span { color: rgba(255,255,255,0.5); }
.testimonial-card--featured .testimonial-card__metric strong { color: var(--copper-light); }
.testimonial-card--featured .testimonial-card__metric span { color: rgba(255,255,255,0.5); }

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--copper-pale);
  margin-bottom: 1rem;
  display: block;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-dark);
}
.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--slate-light);
}

.testimonial-card__metric {
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}
.testimonial-card--featured .testimonial-card__metric {
  border-top-color: rgba(255,255,255,0.1);
}
.testimonial-card__metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper);
}
.testimonial-card__metric span {
  font-size: 0.78rem;
  color: var(--slate-light);
}

/* ============ PRICING ============ */
.pricing {
  padding: 7rem 0;
  background: var(--white);
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.save-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #22C55E;
  background: rgba(34,197,94,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  font-style: normal;
}

.toggle-btn {
  width: 48px;
  height: 26px;
  background: var(--cream-dark);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.toggle-btn.active { background: var(--copper); }

.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.toggle-btn.active .toggle-thumb { transform: translateX(22px); }

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

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--cream-dark);
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: var(--slate-dark);
  border-color: transparent;
  transform: translateY(-12px);
}
.pricing-card--featured:hover { transform: translateY(-16px); }
.pricing-card--featured .pricing-card__tier { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card--featured .price-period { color: rgba(255,255,255,0.5); }
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.6); }
.pricing-card--featured .pricing-card__features li { color: rgba(255,255,255,0.8); }
.pricing-card--featured .pricing-card__features svg { color: var(--copper-light); }
.pricing-card--featured .btn--outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 1rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: var(--slate-dark);
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-mid);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--slate-light);
  font-weight: 500;
}

.price-amount-custom {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--slate-dark);
}

.pricing-card__desc {
  font-size: 0.875rem;
  color: var(--slate-mid);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 500;
}
.pricing-card__features svg { color: var(--copper); flex-shrink: 0; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--slate-dark) 0%, #1A2030 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,115,51,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band__text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band__text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  padding: 5rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer__brand .nav__logo-text { color: var(--white); }
.footer__brand .nav__logo-mark { background: var(--copper); }

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--copper);
  color: var(--white);
}

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

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--copper-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--copper-light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .hero__float-card--1 { top: -10px; right: 0; }
  .hero__float-card--2 { bottom: 20px; left: 0; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card--large { grid-column: span 2; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .testimonial-card--featured { transform: none; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__text p { margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero__headline { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero__trust { gap: 1.25rem; }
  .features { padding: 5rem 0; }
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .modules__grid { grid-template-columns: 1fr; }
  .module-item { border-right: none; }
  .module-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .module-item:last-child { border-bottom: none; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__trust { flex-direction: column; gap: 1rem; }
  .trust-divider { width: 40px; height: 1px; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
}