/* Ryora — recruitment platform */

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

:root {
  --coral:     #ff6f59;
  --coral-dk:  #db504a;
  --slate:     #254441;
  --slate-lt:  #2e5450;
  --green:     #43aa8b;
  --sage:      #b2b09b;
  --sage-lt:   #e8e6dc;
  --cream:     #f9f7f2;
  --white:     #ffffff;
  --ink:       #1a1a1a;
  --font:      'Montserrat', system-ui, sans-serif;
  --font-display: 'Syne', var(--font);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: var(--slate);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.9; text-decoration: none; }

.logo-svg {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}
.logo:hover .logo-svg { transform: translateY(-1px); }

.logo--footer { margin-bottom: 0.85rem; }
.logo--footer .logo-svg { height: 42px; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; gap: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  font-family: var(--font);
}
.btn:hover { text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  background: var(--coral-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 111, 89, 0.4);
}

.btn-white { background: var(--white); color: var(--coral); }
.btn-white:hover { background: var(--cream); }

.btn-slate { background: var(--slate); color: var(--white); }
.btn-slate:hover { background: var(--slate-lt); }

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 8px; }
.btn-full { width: 100%; justify-content: center; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 80px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 85%, rgba(255, 111, 89, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 15%, rgba(67, 170, 139, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px;
}

.hero-bg::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 18%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 111, 89, 0.15);
  box-shadow: 0 0 0 40px rgba(255, 111, 89, 0.04), 0 0 0 80px rgba(255, 111, 89, 0.02);
}

.hero-bg::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 170, 139, 0.12) 0%, transparent 70%);
}

.hero::after {
  display: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both 0.1s;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 111, 89, 0.15);
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 111, 89, 0.25);
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
h1 em { font-style: normal; color: var(--coral); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.stat-pill:hover {
  border-color: rgba(255, 111, 89, 0.35);
  background: rgba(255, 255, 255, 0.09);
}
.stat-pill--accent {
  border-color: rgba(255, 111, 89, 0.3);
  background: rgba(255, 111, 89, 0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
  max-width: 130px;
}

.hero-right {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both 0.3s;
}

.hcard-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 400px;
  margin-left: auto;
}

.hcard-stack-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
  padding-left: 0.25rem;
}

.hcard-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(67, 170, 139, 0.25);
  animation: pulse-live 2s ease infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hcard {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.95rem 1rem 0.8rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.25s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.hcard::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: transparent;
  transition: background 0.25s;
}

.hcard:nth-of-type(2) { z-index: 4; transform: translateX(0) scale(1.02); }
.hcard:nth-of-type(2)::before { background: var(--coral); }
.hcard:nth-of-type(3) { z-index: 3; transform: translateX(18px); }
.hcard:nth-of-type(4) { z-index: 2; transform: translateX(6px); }
.hcard:nth-of-type(5) { z-index: 1; transform: translateX(22px); opacity: 0.92; }

.hcard:hover {
  border-color: rgba(255, 111, 89, 0.45);
  transform: translateX(0) translateY(-3px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  opacity: 1;
  z-index: 5;
}

.hcard-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hcard-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 111, 89, 0.12);
}
.hcard:nth-of-type(2) .hcard-av {
  border-color: rgba(255, 111, 89, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 111, 89, 0.2);
}
.hcard-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hcard-body { flex: 1; min-width: 0; }

.hcard-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hcard-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}

.hcard-tags {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.45rem;
  flex-wrap: wrap;
}

.htag {
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.htag--ok {
  background: rgba(67, 170, 139, 0.15);
  color: #6dd4b3;
  border-color: rgba(67, 170, 139, 0.25);
}

.hcard-score { flex-shrink: 0; }

.hcard-ring {
  --match: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(
    var(--green) calc(var(--match) * 1%),
    rgba(255, 255, 255, 0.08) 0
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hcard-ring span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a4f4b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

.hcard-bar {
  margin-top: 0.75rem;
  height: 3px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.hcard-bar span {
  display: block;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--green), #5ec9a8);
  transition: width 0.6s ease;
}

/* SECTIONS */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--slate);
  margin-bottom: 0.9rem;
}

.section-sub {
  color: #5e6b68;
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.65;
}

/* STORIES */
.stories {
  padding: 0 5vw;
  background: var(--white);
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--sage-lt);
}
.story-row:last-child { border-bottom: none; }

.story-row--reverse .story-media { order: 2; }
.story-row--reverse .story-content { order: 1; }

.story-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage-lt);
}
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-content .section-title { margin-bottom: 1rem; }
.story-text {
  color: #5e6b68;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 440px;
}

/* SECTORS */
.sectors { padding: 96px 5vw; background: var(--cream); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 1080px;
  margin: 0 auto;
}

.sector-card {
  background: var(--white);
  border: 1px solid var(--sage-lt);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.sector-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(37, 68, 65, 0.1);
}

.sector-card--solo { grid-column: 2; }

.sector-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}

.sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.sector-icon svg {
  width: 22px;
  height: 22px;
}

.sector-card:nth-child(1) .sector-icon { background: rgba(255, 111, 89, 0.12); color: var(--coral); }
.sector-card:nth-child(2) .sector-icon { background: rgba(37, 68, 65, 0.1); color: var(--slate); }
.sector-card:nth-child(3) .sector-icon { background: rgba(67, 170, 139, 0.12); color: var(--green); }
.sector-card:nth-child(4) .sector-icon { background: rgba(255, 111, 89, 0.12); color: var(--coral); }
.sector-card:nth-child(5) .sector-icon { background: rgba(67, 170, 139, 0.12); color: var(--green); }
.sector-card:nth-child(6) .sector-icon { background: rgba(178, 176, 155, 0.2); color: #8a8878; }
.sector-card:nth-child(7) .sector-icon { background: rgba(37, 68, 65, 0.1); color: var(--slate); }

.sector-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.25;
  padding-top: 0.35rem;
}
.sector-desc {
  font-size: 0.8rem;
  color: #6d7875;
  line-height: 1.55;
  flex: 1;
}
.sector-count {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--green);
  background: rgba(67, 170, 139, 0.1);
  border: 1px solid rgba(67, 170, 139, 0.15);
}
.sector-card--solo .sector-count {
  color: var(--slate);
  background: rgba(37, 68, 65, 0.08);
  border-color: rgba(37, 68, 65, 0.12);
}

/* MARQUEE */
.marquee {
  background: var(--slate);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track span:not(.marquee-sep) {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-sep {
  color: var(--coral);
  opacity: 0.5;
  font-size: 1rem;
}

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

/* HOW */
.how { padding: 96px 5vw; background: var(--white); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.how-steps { display: flex; flex-direction: column; gap: 2rem; }

.step { display: flex; gap: 1.2rem; align-items: flex-start; }

.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--slate);
  margin-bottom: 0.3rem;
}
.step-desc { font-size: 0.855rem; color: #5e6b68; line-height: 1.6; }

.how-panel {
  background: var(--slate);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}
.how-panel::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 111, 89, 0.09);
}

.how-panel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.4rem;
}

.mcard {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.mcard-av {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 111, 89, 0.15);
  overflow: hidden;
  flex-shrink: 0;
}
.mcard-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mcard-body { flex: 1; min-width: 0; }
.mcard-name { font-family: var(--font); font-weight: 700; font-size: 0.83rem; color: var(--white); }
.mcard-role { font-size: 0.7rem; color: var(--sage); margin-bottom: 0.35rem; }
.mcard-tags { display: flex; gap: 0.3rem; flex-wrap: wrap; }

.mtag {
  padding: 0.12rem 0.45rem;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}
.mtag.ok { background: rgba(67, 170, 139, 0.2); color: var(--green); }

.mcard-pct { margin-left: auto; flex-shrink: 0; }
.mpct {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  text-align: right;
  line-height: 1;
}

.mbar {
  width: 44px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 0.3rem;
  overflow: hidden;
}
.mbar-fill { height: 100%; background: var(--green); border-radius: 2px; }

/* FEATURES */
.features { padding: 96px 5vw; background: var(--cream); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 3rem;
}

.feat {
  background: var(--white);
  border: 1px solid var(--sage-lt);
  border-radius: 14px;
  padding: 1.65rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feat:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(37, 68, 65, 0.1);
  transform: translateY(-2px);
}
.feat:hover::before { transform: scaleX(1); }

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 111, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--coral);
}
.feat-icon svg {
  width: 22px;
  height: 22px;
}
.feat:hover .feat-icon {
  background: rgba(255, 111, 89, 0.18);
  color: var(--coral-dk);
}

.feat-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 0.45rem;
}
.feat-desc { font-size: 0.82rem; color: #5e6b68; line-height: 1.65; }

/* SOLUTIONS */
.solutions {
  padding: 96px 5vw;
  background: var(--white);
}

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

.sol-card {
  background: var(--cream);
  border: 1px solid var(--sage-lt);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sol-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 68, 65, 0.1);
}

.sol-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sage-lt);
}
.sol-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.sol-card:hover .sol-img img { transform: scale(1.04); }

.sol-body { padding: 1.35rem 1.4rem 1.5rem; }

.sol-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 0.45rem;
}
.sol-desc {
  font-size: 0.82rem;
  color: #5e6b68;
  line-height: 1.65;
  margin-bottom: 0.9rem;
}
.sol-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  transition: color 0.2s;
}
.sol-link:hover { color: var(--coral-dk); }

/* TESTIMONIALS */
.testimonials { padding: 96px 5vw; background: var(--slate); }
.testimonials .section-eyebrow { color: var(--coral); }
.testimonials .section-title { color: var(--white); margin-bottom: 0; }

.testimonials-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.testimonials-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: sticky;
  top: 88px;
  background: rgba(255, 255, 255, 0.06);
}
.testimonials-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.tcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.65rem;
  transition: border-color 0.2s;
}
.tcard:hover { border-color: rgba(255, 111, 89, 0.35); }

.tcard-mark {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.4rem;
  opacity: 0.8;
}
.tcard-quote {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.tcard-author { display: flex; align-items: center; gap: 0.7rem; }
.tcard-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 111, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--coral);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.tcard-name { font-weight: 600; font-size: 0.85rem; color: var(--white); }
.tcard-meta { font-size: 0.72rem; color: var(--sage); }

/* TRUST STRIP */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  padding: 1.4rem 5vw;
  background: var(--cream);
  border-top: 1px solid var(--sage-lt);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--coral);
  flex-shrink: 0;
}

/* FAQ */
.faq {
  padding: 96px 5vw;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.faq-intro .section-sub { margin-bottom: 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  border: 1px solid var(--sage-lt);
  border-radius: 12px;
  background: var(--cream);
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}
.faq-item[open] {
  border-color: rgba(255, 111, 89, 0.35);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(37, 68, 65, 0.06);
}

.faq-item summary {
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--slate);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 1.3rem 1.15rem;
  font-size: 0.85rem;
  color: #5e6b68;
  line-height: 1.7;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA / CONTACT */
.cta-section {
  padding: 96px 5vw;
  background: var(--coral);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cta-section .section-eyebrow { color: rgba(255, 255, 255, 0.6); }
.cta-section .section-title {
  color: var(--white);
  text-align: center;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* CONTACT FORM */
.contact-form-wrap {
  margin-top: 0;
  max-width: 760px;
  width: 100%;
}

.form-tabs {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.form-tab {
  flex: 1;
  padding: 0.8rem 1.1rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.15s;
}
.form-tab.is-active {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.25rem 2.5rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #5e6b68;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--sage-lt);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  outline: none;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  background: var(--white);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #e05252;
  background: #fff8f8;
}

.field-error {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: #e05252;
  line-height: 1.3;
}

.form-full { margin-bottom: 1.25rem; }
.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form .btn-full { margin-top: 0.25rem; padding: 0.85rem 1.25rem; }

.form-legal {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: #5e6b68;
}

.form-row--employer.hidden { display: none; }

/* CONTACT PAGE */
.contact-page {
  padding: 72px 5vw 96px;
  background: var(--cream);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

.contact-info-title,
.contact-form-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.85rem;
}

.contact-info-lead {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5e6b68;
  margin-bottom: 1.75rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.contact-info-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--slate);
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.contact-info-list a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-list a:hover { color: var(--coral); }

.contact-info-note {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #5e6b68;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(37, 68, 65, 0.1);
}

.contact-info-note a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-note a:hover { text-decoration: underline; }

.contact-page-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(37, 68, 65, 0.08);
  box-shadow: 0 12px 40px rgba(37, 68, 65, 0.06);
}

.contact-form--page {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.contact-form--page .form-legal a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
}

.contact-form--page .form-legal a:hover { text-decoration: underline; }

.form-section {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0 0 1.25rem;
  border-bottom: 1px solid var(--sage-lt);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 1rem;
  padding: 0;
}

@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}

/* MODAL */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 11, 0.55);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 18px;
  padding: 2.25rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 24px 64px rgba(37, 68, 65, 0.22);
  animation: modalIn 0.28s ease;
}

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(67, 170, 139, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-icon svg {
  width: 28px;
  height: 28px;
}

.modal-title {
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.modal-text {
  font-size: 0.9rem;
  color: #5e6b68;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* FOOTER */
footer {
  background: #1b3330;
  color: rgba(255, 255, 255, 0.45);
  padding: 56px 5vw 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 1.75rem;
}

.footer-top > div:first-child { max-width: 280px; }

.footer-tagline { font-size: 0.82rem; margin-bottom: 1.1rem; line-height: 1.6; }
.footer-contact { font-size: 0.79rem; line-height: 1.9; }
.footer-contact a { color: rgba(255, 255, 255, 0.45); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }

.footer-col h4 {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a {
  font-size: 0.845rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.77rem;
}

/* ABOUT PAGE */
.page-hero {
  padding: 140px 5vw 72px;
  background: var(--slate);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(255, 111, 89, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(67, 170, 139, 0.14), transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  max-width: 720px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.page-hero-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
}

/* LEGAL PAGE */
.legal-page {
  padding: 64px 5vw 96px;
  background: var(--cream);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(37, 68, 65, 0.08);
  box-shadow: 0 12px 40px rgba(37, 68, 65, 0.05);
}

.legal-updated {
  font-size: 0.82rem;
  color: #5e6b68;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sage-lt);
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section:last-child { margin-bottom: 0; }

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 0.85rem;
}

.legal-section p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #5e6b68;
  margin-bottom: 0.85rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 0.5rem 0 0.85rem 1.25rem;
  padding: 0;
}

.legal-section li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #5e6b68;
  margin-bottom: 0.4rem;
}

.legal-section a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
}

.legal-section a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .legal-content { padding: 1.75rem 1.35rem; }
}

.about-intro {
  padding: 80px 5vw;
  background: var(--white);
}

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

.about-intro-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage-lt);
}

.about-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  color: #5e6b68;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-text:last-child { margin-bottom: 0; }

.about-intro-content .section-title { margin-bottom: 1.25rem; }

.about-values {
  padding: 80px 5vw;
  background: var(--cream);
}

.about-values-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-value-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid rgba(37, 68, 65, 0.08);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(67, 170, 139, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-value-icon svg { width: 22px; height: 22px; }

.about-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--slate);
}

.about-value-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5e6b68;
}

.about-story {
  padding: 0 5vw;
  background: var(--white);
}

.about-story .story-row {
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: none;
  padding: 72px 0;
}

.about-stats {
  padding: 64px 5vw;
  background: var(--slate);
}

.about-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.about-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.about-gallery {
  padding: 80px 5vw;
  background: var(--cream);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.about-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background: var(--sage-lt);
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery-caption {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.about-gallery-caption .section-title { margin-bottom: 0.75rem; }

.about-gallery-caption p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5e6b68;
}

.about-cta {
  padding: 80px 5vw;
  background: var(--white);
}

.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 111, 89, 0.08), rgba(67, 170, 139, 0.08));
  border: 1px solid rgba(37, 68, 65, 0.08);
}

.about-cta-inner .section-title { margin-bottom: 0.75rem; }

.about-cta-inner > p {
  color: #5e6b68;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.about-cta .btn-ghost {
  border-color: var(--slate);
  color: var(--slate);
}

.about-cta .btn-ghost:hover {
  background: var(--slate);
  color: var(--white);
}

@media (max-width: 900px) {
  .about-intro-grid,
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stats-inner { grid-template-columns: 1fr 1fr; }
  .about-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-gallery-item { aspect-ratio: 16 / 10; }
}

@media (max-width: 640px) {
  .page-hero { padding-top: 120px; }
  .about-stats-inner { grid-template-columns: 1fr; }
  .about-cta-actions { flex-direction: column; }
  .about-cta-actions .btn { width: 100%; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .story-row,
  .story-row--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 56px 0;
  }
  .story-row--reverse .story-media,
  .story-row--reverse .story-content { order: unset; }
  .hcard:nth-of-type(n) {
    transform: none;
    opacity: 1;
  }
  .hcard:hover { transform: translateY(-2px); }
  .hcard-stack { max-width: none; margin-left: 0; }
  .faq-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sol-grid { grid-template-columns: 1fr; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .testimonials-photo {
    aspect-ratio: 16 / 9;
    position: static;
    max-height: 280px;
  }
  .how-grid { grid-template-columns: 1fr; }
  .how-panel { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-card--solo { grid-column: span 2; max-width: 400px; justify-self: center; width: 100%; }
}

@media (max-width: 640px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--slate-lt);
    padding: 1rem 5vw;
    gap: 0;
  }
  .nav.is-open .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
  }
  .nav.is-open .nav-cta {
    display: flex;
    position: absolute;
    top: calc(64px + 200px);
    left: 5vw;
    right: 5vw;
  }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .features-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector-card--solo { grid-column: 1; max-width: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem 1.25rem; }
  .cta-section .section-title { margin-bottom: 1.75rem; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.is-visible { transform: none; }
}
