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

:root {
  --cream: #f5f0e8;
  --cream2: #ede8de;
  --cream3: #e2dbd0;
  --sand: #d4ccc0;
  --warm-white: #faf8f4;
  --text1: #1a1714;
  --text2: #4a443c;
  --text3: #7a726a;
  --accent: #c96442;
  --accent2: #b05538;
  --accent-light: #f5e8e2;
  --border: rgba(26,23,20,0.1);
  --border2: rgba(26,23,20,0.06);
  --font-serif: 'Lora', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text1);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.88);
  backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text1);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo-dot { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

nav ul a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--text1); }

.nav-cta {
  background: var(--text1) !important;
  color: var(--warm-white) !important;
  padding: 8px 20px !important;
  border-radius: 40px !important;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.82 !important; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-select {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 28px 7px 10px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a443c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  max-width: 200px;
}

.lang-select:hover { border-color: rgba(26,23,20,0.18); color: var(--text1); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

html[dir="rtl"] .nav-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-right {
  flex-direction: row-reverse;
}

html[dir="rtl"] nav ul {
  flex-direction: row-reverse;
}

html[dir="rtl"] .lang-select {
  padding: 7px 10px 7px 28px;
  background-position: left 8px center;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

/* Decorative circles */
.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.agent-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-sans);
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 36px;
  letter-spacing: 0.1px;
}

.agent-pill-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--text1);
  margin-bottom: 26px;
}

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

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--warm-white);
  border: none;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.1px;
}

.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text1);
  border: 1px solid var(--border);
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-ghost:hover { background: var(--cream2); transform: translateY(-1px); }

/* LIVE AGENT FEED */
.agent-feed {
  margin-top: 64px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-bottom: 1px solid var(--border2);
}

.feed-counter {
  margin-left: auto;
  font-size: 11px;
  color: var(--text3);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.feed-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5ee;
  color: #2a7a4a;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.feed-live::before {
  content: '';
  width: 5px; height: 5px;
  background: #2a7a4a;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.feed-progress-bar {
  height: 2px;
  background: var(--border2);
  position: relative;
  overflow: hidden;
}

.feed-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width linear;
}

.feed-list {
  overflow: hidden;
  position: relative;
}

.feed-item {
  display: flex;
  gap: 12px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--border2);
  font-size: 13px;
  color: var(--text2);
  transition: background 0.3s;
}

.feed-item:last-child { border-bottom: none; }

.feed-item.feed-new {
  animation: feedSlide 0.45s cubic-bezier(0.22,1,0.36,1);
}

.feed-item.feed-active {
  background: #fdf6f3;
}

@keyframes feedSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feed-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.feed-item.feed-active .feed-icon {
  background: var(--accent);
}

.feed-item.feed-processing .feed-icon-inner {
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.feed-text strong {
  color: var(--text1);
  font-weight: 500;
}

.feed-time {
  font-size: 11px;
  color: var(--text3);
  margin-top: 2px;
}

/* STATS */
.stats {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 32px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--warm-white);
  padding: 44px 36px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -2px;
  color: var(--text1);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num em { font-style: normal; color: var(--accent); }

.stat-label {
  font-size: 14px;
  color: var(--text3);
  font-weight: 400;
  line-height: 1.45;
}

/* TICKER */
.ticker-wrap {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--cream2), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--cream2), transparent); }

.ticker-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text3);
  margin-bottom: 14px;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}

.ticker-item-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* GLOBE BANNER */
.globe-banner {
  background: var(--text1);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.globe-banner-inner { position: relative; z-index: 2; }

.globe-banner h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  color: var(--warm-white);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.globe-banner p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250,248,244,0.45);
  max-width: 460px;
  margin: 0 auto;
}

.globe-svg {
  position: absolute;
  opacity: 0.06;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
}

.region-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(250,248,244,0.07);
  border: 1px solid rgba(250,248,244,0.12);
  color: rgba(250,248,244,0.7);
  font-size: 13px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 40px;
}

.region-flag { font-size: 14px; }

/* SECTIONS */
section { padding: 110px 32px; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 14px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text1);
}

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

.section-lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 64px;
}

/* HOW */
.how {
  background: var(--cream);
}

.how-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how-left {}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step-row:first-child { padding-top: 0; }
.step-row:last-child { border-bottom: none; }

.step-num-wrap {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  font-family: var(--font-serif);
  margin-top: 3px;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-content p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  font-weight: 300;
}

.step-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* Right panel - agent visualization */
.how-right {
  position: sticky;
  top: 90px;
}

.agent-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.agent-card-header {
  background: var(--text1);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-white);
  font-family: var(--font-serif);
  flex-shrink: 0;
}

.agent-info h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-white);
  font-family: var(--font-sans);
}

.agent-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
}

.agent-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.status-dot {
  width: 6px; height: 6px;
  background: #4cd87a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.agent-card-body {
  padding: 20px 22px;
}

.thought-bubble {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  border-left: 2px solid var(--sand);
}

.thought-bubble strong {
  color: var(--text1);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.action-log {
  margin-top: 16px;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--text3);
  border-bottom: 1px solid var(--border2);
}

.action-row:last-child { border-bottom: none; }

.action-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
}

.action-done { color: #2a7a4a; }
.action-active { color: var(--accent); font-weight: 500; }

.typing-dots {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.typing-dots span {
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

/* INTEGRATIONS */
.integrations { background: var(--cream); padding: 120px 24px; }
.integrations-inner { max-width: 860px; margin: 0 auto; }
.integrations-header { text-align: center; margin-bottom: 72px; }
.integrations-header .section-lead { margin: 0 auto; }

.intg-diagram-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.intg-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.intg-chip-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
}

.intg-chip-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  letter-spacing: 0.2px;
}

.intg-connector {
  flex: 1;
  height: 2px;
  background: var(--border2);
  position: relative;
  min-width: 80px;
  max-width: 160px;
  overflow: visible;
}

.intg-connector::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(201,100,66,0.6);
  animation: flow-right 2s ease-in-out infinite;
}

.intg-connector-rev::after {
  animation: flow-right 2s ease-in-out infinite 1s;
}

@keyframes flow-right {
  0%   { left: 0; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

.intg-hub {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 10px rgba(201,100,66,0.1), 0 0 0 20px rgba(201,100,66,0.05), 0 8px 32px rgba(201,100,66,0.3);
}

.intg-hub-label {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.intg-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.intg-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 28px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.intg-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.intg-card-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text1);
}

.intg-card-body p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

.intg-security {
  margin-top: 14px;
  background: #f0f9f4;
  border: 1px solid #c3e6d0;
  border-radius: 10px;
  padding: 12px 14px;
}

.intg-security-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #2d7a4f;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.intg-security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.intg-security-list li {
  font-size: 12.5px;
  color: #2d5a3d;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.intg-security-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #3a9e5f;
  font-weight: 700;
}

@media (max-width: 640px) {
  .intg-diagram-wrap { padding: 40px 20px; gap: 0; }
  .intg-connector { min-width: 40px; }
  .intg-hub { width: 70px; height: 70px; }
  .intg-cards { grid-template-columns: 1fr; }
  .intg-card { flex-direction: column; gap: 12px; }
}

/* MATCH CARD */
.match-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}

.match-card-top { padding: 24px 24px 20px; }

.match-company-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.match-company-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #635bff;
  color: white;
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.match-company-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text1);
}

.match-company-meta {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
}

.match-badge {
  margin-left: auto;
  background: #e8f5ee;
  color: #2d7a4f;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.match-role {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text1);
  margin-bottom: 6px;
}

.match-salary {
  font-size: 14px;
  color: var(--text2);
  font-weight: 500;
}

.match-divider {
  height: 1px;
  background: var(--border2);
  margin: 0 24px;
}

.match-tags-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text3);
  padding: 16px 24px 10px;
}

.match-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 24px 16px;
}

.match-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.match-tag-yes { background: #e8f5ee; color: #2d7a4f; }
.match-tag-no  { background: #fff4e6; color: #b35c00; }

.match-timeline {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.match-step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.match-step-done .match-step-dot   { background: #3a9e5f; }
.match-step-active .match-step-dot { background: var(--accent); box-shadow: 0 0 0 3px rgba(201,100,66,0.2); }
.match-step-pending .match-step-dot { background: var(--border); }

.match-step-done .match-step-text   { color: var(--text2); }
.match-step-active .match-step-text { color: var(--text1); font-weight: 500; }
.match-step-pending .match-step-text { color: var(--text3); }

/* BENEFITS */
.benefits { background: var(--warm-white); }

.benefits-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.benefits-header { margin-bottom: 64px; }

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

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,23,20,0.08);
}

.benefit-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 20px;
  font-style: italic;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  font-weight: 300;
}

/* TESTIMONIALS */
.testimonials { background: var(--cream); }

.testimonials-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}

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

.testimonial {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid var(--border);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text1);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 28px;
  display: block;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.av1 { background: #e8dff5; color: #5a3e8a; }
.av2 { background: #dfeae8; color: #2d6b5e; }
.av3 { background: #f5e8e2; color: var(--accent); }

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text1);
  display: block;
}

.author-role {
  font-size: 12px;
  color: var(--text3);
}

/* CTA */
.cta-section {
  background: var(--text1);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.cta-inner { position: relative; z-index: 2; }

.cta-section h2 {
  color: var(--warm-white);
  font-size: clamp(32px, 5vw, 58px);
  margin-bottom: 18px;
}

.cta-section p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(250,248,244,0.55);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.cta-section .btn-primary {
  background: var(--accent);
  font-size: 16px;
  padding: 17px 40px;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(250,248,244,0.3);
}

/* FOOTER */
footer {
  background: var(--cream2);
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text1);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text1); }

.footer-copy {
  font-size: 12px;
  color: var(--text3);
}

@media (max-width: 800px) {
  .how-layout { grid-template-columns: 1fr; }
  .how-right { position: static; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; gap: 1px; }
  nav ul { display: none; }
  .nav-right { gap: 12px; }
  .lang-select { max-width: min(200px, 42vw); font-size: 12px; padding: 6px 26px 6px 8px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
}
