/* ============================================================
   WorkReady.tech — Clean Professional
   Font: Onest (excellent native Cyrillic, 9 weights)
   Palette: Deep navy + warm amber accent + clean white bg
   ============================================================ */

:root {
  /* Colors */
  --c-bg: #FFFFFF;
  --c-bg-alt: #F7F7F8;
  --c-surface: #FFFFFF;
  --c-text: #1A1A2E;
  --c-text-soft: #5A5A72;
  --c-accent: #D4830E;
  --c-accent-light: #F5C76E;
  --c-accent-dark: #A86200;
  --c-navy: #1A1A2E;
  --c-navy-light: #2D2D44;
  --c-border: #E8E8EC;
  --c-success: #2D7A4F;

  /* Typography — single font family */
  --f-sans: 'Onest', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --s-section: clamp(4rem, 10vw, 8rem);
  --s-container: min(72rem, 90vw);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s var(--ease);
  --t-med: 0.4s var(--ease);
  --t-slow: 0.7s var(--ease);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

em {
  font-style: normal;
  color: var(--c-accent-dark);
}

.container {
  width: var(--s-container);
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-sm);
  border: 2px solid var(--c-navy);
  background: var(--c-navy);
  color: #fff;
  cursor: pointer;
  transition: all var(--t-fast);
  letter-spacing: -0.01em;
}
.btn:hover {
  background: var(--c-navy-light);
  border-color: var(--c-navy-light);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--c-navy);
}
.btn--outline:hover {
  background: var(--c-navy);
  color: #fff;
}
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---- Section Headers ---- */
.section-label {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--f-sans);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-navy);
}

.section-sub {
  font-size: 1rem;
  color: var(--c-text-soft);
  margin-top: 0.75rem;
}

/* ---- Reveal Animation ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: all var(--t-fast);
}

.nav__inner {
  width: var(--s-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}

.nav__logo {
  font-family: var(--f-sans);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c-navy);
  letter-spacing: -0.03em;
}
.nav__logo span { color: var(--c-accent); }

.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--c-navy); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-border);
  background: transparent;
  color: var(--c-text-soft);
  cursor: pointer;
  transition: all var(--t-fast);
}
.lang-toggle:hover {
  border-color: var(--c-navy);
  color: var(--c-navy);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all var(--t-fast);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--c-border);
}
.nav__mobile a {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--c-text);
}
.nav__mobile.active { display: flex; }

@media (max-width: 768px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__actions { gap: 0.75rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(3.75rem + var(--s-section)) 0 var(--s-section);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(212, 131, 14, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(26, 26, 46, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
}
.hero__title em {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--c-text-soft);
  max-width: 38rem;
  margin: 0 auto 2rem;
}

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

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  width: fit-content;
  margin: 0 auto;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.hero__proof-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
}
.hero__proof-item span {
  font-size: 0.75rem;
  color: var(--c-text-soft);
}

.hero__proof-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--c-border);
}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { width: 100%; justify-content: center; }
}

/* ============================================================
   PAIN BANNER
   ============================================================ */
.pain {
  padding: 2rem 0;
  background: #FEF3E2;
  border-top: 2px solid var(--c-accent);
}

.pain__inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.pain__icon {
  flex-shrink: 0;
  color: var(--c-accent);
  margin-top: 0.15rem;
}

.pain__text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-text);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--s-section) 0;
  background: var(--c-bg-alt);
}

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

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: all var(--t-med);
  position: relative;
}
.service-card:hover {
  border-color: var(--c-accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.06);
}

.service-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--c-navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.service-card__price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-navy);
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: var(--s-section) 0;
}

.how__steps {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how__step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border);
}
.how__step:last-child { border-bottom: none; }

.how__step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--c-border);
  line-height: 1;
  flex-shrink: 0;
  width: 4rem;
}

.how__step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--c-navy);
}

.how__step-content p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.55;
}

/* ============================================================
   PROOF (replaces Story)
   ============================================================ */
.proof {
  padding: var(--s-section) 0;
  background: var(--c-navy);
  color: #fff;
}

.proof__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.proof__header {
  max-width: 24rem;
}

.proof__header .section-label {
  color: var(--c-accent-light);
}

.proof__header h2 {
  color: #fff;
}

.proof__header h2 em {
  color: var(--c-accent-light);
}

.proof__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.proof__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.proof__check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 131, 14, 0.15);
  color: var(--c-accent-light);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .proof__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--s-section) 0;
  background: var(--c-bg-alt);
}

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

.pricing__card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
  position: relative;
  transition: all var(--t-med);
}
.pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.06);
}

.pricing__card--featured {
  border-color: var(--c-navy);
  box-shadow: 0 0 0 1px var(--c-navy);
}

.pricing__card-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--c-navy);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-border);
}

.pricing__card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}

.pricing__price {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--c-navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.pricing__card li {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  padding-left: 1.5rem;
  position: relative;
}
.pricing__card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-success);
}

.pricing__note {
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin-bottom: 1.5rem;
}

.pricing__card .btn { width: 100%; }

.pricing__footnote {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-text-soft);
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--s-section) 0;
}

.faq__list {
  max-width: 42rem;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
}

.faq__item summary {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--t-fast);
}
.faq__item summary:hover { color: var(--c-accent); }

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-text-soft);
  transition: transform var(--t-fast);
}
.faq__item[open] summary::after {
  content: '\2212';
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  padding-bottom: 1.25rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--s-section) 0;
  background: var(--c-bg-alt);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.contact__info p {
  font-size: 1rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text);
  transition: color var(--t-fast);
}
.contact__channel:hover { color: var(--c-accent); }

.contact__channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  color: var(--c-text-soft);
  flex-shrink: 0;
}
.contact__channel:hover .contact__channel-icon {
  color: var(--c-accent);
  border-color: var(--c-accent);
}

/* Form */
.contact__form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
  position: relative;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  padding: 1rem 0.85rem 0.5rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-bg-alt);
  color: var(--c-text);
  transition: border-color var(--t-fast);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-navy);
}

.form-group label {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.875rem;
  color: var(--c-text-soft);
  pointer-events: none;
  transition: all var(--t-fast);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.25rem;
  font-size: 0.65rem;
  color: var(--c-navy);
}

.form-group select {
  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='%235A5A72' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.contact__form-note {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  text-align: center;
  margin-top: 0.75rem;
}

/* Form success state */
.contact__form--success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 20rem;
}
.contact__form--success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact__form--success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}
.contact__form--success p {
  color: var(--c-text-soft);
}

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 0 2rem;
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__logo {
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}
.footer__logo span { color: var(--c-accent); }

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--c-accent-light); }

.footer__legal {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}
.footer__legal p { margin-bottom: 0.25rem; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--t-fast);
  font-size: 0.75rem;
}
.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

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