/* ==========================================================================
   YANDEX PRACTICUM 1:1 REPLICATION STYLESHEET
   Reference: https://practicum.yandex.ru/sys-admin/
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  --yp-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --yp-mono: 'JetBrains Mono', Consolas, Monaco, monospace;

  /* Practicum Signature Colors */
  --yp-yellow: #FFDF39;
  --yp-yellow-hover: #FEE47C;
  --yp-yellow-shadow: #D5AB22;
  
  --yp-blue: #1D4ED8;
  --yp-blue-hover: #1E40AF;
  --yp-blue-light: #EFF6FF;
  --yp-blue-border: #BFDBFE;

  --yp-white: #FFFFFF;
  --yp-grey-bg: #F5F5F7;
  --yp-grey-alt: #FAFAFA;
  --yp-dark: #111827;
  --yp-dark-card: #0F172A;

  --yp-text-h: #1B1B1E;
  --yp-text-p: #4B4B4B;
  --yp-text-muted: #767676;
  
  --yp-border: #E5E7EB;
  --yp-border-light: #F3F4F6;
  --yp-border-dark: #D1D5DB;

  --yp-radius-sm: 8px;
  --yp-radius-md: 14px;
  --yp-radius-lg: 20px;
  --yp-radius-xl: 28px;
  --yp-radius-full: 9999px;
}

/* Base resets scoped to .maya-home */
body.maya-home {
  background-color: var(--yp-white) !important;
  color: var(--yp-text-h) !important;
  font-family: var(--yp-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

body.maya-home .site-main {
  background-color: var(--yp-white) !important;
  overflow-x: hidden;
}

/* Floating Navigation Bar Tuning */
body.maya-home .site-header {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid var(--yp-border) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

body.maya-home .header-cta-btn {
  background: var(--yp-yellow) !important;
  color: #1E1E1E !important;
  border-radius: var(--yp-radius-full) !important;
  box-shadow: 0 2px 0 0 var(--yp-yellow-shadow) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 10px 22px !important;
  border: none !important;
  transition: background-color 0.15s, transform 0.15s;
}

body.maya-home .header-cta-btn:hover {
  background: var(--yp-yellow-hover) !important;
  transform: translateY(-1px);
}

.yp-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   BUTTONS & BADGES (PRACTICUM AESTHETIC)
   ========================================================================== */

.yp-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--yp-radius-full);
  line-height: 1.2;
}

.yp-pill-accent {
  background: #FFF3B3;
  color: #7A5800;
  border: 1px solid rgba(213, 171, 34, 0.3);
}

.yp-pill-neutral {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
}

.yp-pill-blue {
  background: var(--yp-blue-light);
  color: var(--yp-blue);
  border: 1px solid var(--yp-blue-border);
}

.yp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--yp-font);
  border-radius: var(--yp-radius-full);
  text-decoration: none !important;
  transition: all 0.15s ease-out;
  cursor: pointer;
  border: none;
  line-height: 1.2;
}

.yp-btn-yellow {
  background-color: var(--yp-yellow);
  color: #1E1E1E !important;
  box-shadow: 0 2px 0 0 var(--yp-yellow-shadow);
}

.yp-btn-yellow:hover {
  background-color: var(--yp-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 0 var(--yp-yellow-shadow);
}

.yp-btn-yellow:active {
  transform: translateY(1px);
  box-shadow: none;
}

.yp-btn-outline {
  background-color: #FFFFFF;
  color: var(--yp-text-h) !important;
  border: 1.5px solid var(--yp-border);
}

.yp-btn-outline:hover {
  background-color: var(--yp-grey-bg);
  border-color: var(--yp-border-dark);
}

.yp-btn-outline-dark {
  background-color: transparent;
  color: #1E1E1E !important;
  border: 1.5px solid #1E1E1E;
}

.yp-btn-outline-dark:hover {
  background-color: #1E1E1E;
  color: #FFFFFF !important;
}

.yp-btn-outline-light {
  background-color: transparent;
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.yp-btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

.yp-btn-block {
  width: 100%;
}

.yp-btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.yp-btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

/* ==========================================================================
   1. HERO SECTION (PRACTICUM 1:1 REPLICATION)
   ========================================================================== */

.yp-hero {
  padding: 120px 0 40px;
  background: #FFFFFF;
}

.yp-hero-card {
  background: #FFFFFF;
  margin-bottom: 24px;
}

.yp-hero-main-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.yp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.yp-pill-subject {
  background: #2B2B2B;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  line-height: 1.2;
}

.yp-pill-level {
  background: #F0F0F0;
  color: #2B2B2B;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  line-height: 1.2;
}

.yp-pill-ai {
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #BFDBFE;
  line-height: 1.2;
}

.yp-hero-h1 {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--yp-text-h);
  margin: 0 0 18px;
}

.yp-hero-lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--yp-text-p);
  margin: 0 0 32px;
  max-width: 540px;
}

.yp-hero-btn-row {
  display: flex;
  margin-bottom: 0;
}

.yp-btn-hero {
  background-color: var(--yp-yellow);
  color: #1E1E1E !important;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--yp-radius-full);
  box-shadow: 0 2px 0 0 var(--yp-yellow-shadow);
  text-decoration: none !important;
  transition: all 0.15s ease-out;
}

.yp-btn-hero:hover {
  background-color: var(--yp-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 3px 0 0 var(--yp-yellow-shadow);
}

.yp-btn-hero:active {
  transform: translateY(1px);
  box-shadow: none;
}

.yp-hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.yp-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--yp-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 6 Key Checklist Cards */
.yp-hero-features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.yp-feature-item {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-md);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
}

.yp-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--yp-border-dark);
}

.yp-feature-check {
  font-size: 16px;
  font-weight: 900;
  color: #16A34A;
  background: #DCFCE7;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yp-feature-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--yp-text-h);
  margin-bottom: 4px;
}

.yp-feature-info span {
  display: block;
  font-size: 13px;
  color: var(--yp-text-p);
  line-height: 1.4;
}

/* ==========================================================================
   2. STICKY SUB-NAV
   ========================================================================== */

.yp-sticky-nav {
  position: sticky;
  top: 84px;
  z-index: 700;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--yp-border);
  padding: 10px 0;
}

.yp-nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.yp-nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.yp-nav-list li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--yp-text-p);
  text-decoration: none !important;
  transition: color 0.15s;
}

.yp-nav-list li a:hover {
  color: var(--yp-blue);
}

.yp-nav-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #1E1E1E !important;
  background: var(--yp-yellow);
  border-radius: var(--yp-radius-full);
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 0 0 var(--yp-yellow-shadow);
}

.yp-nav-action-btn:hover {
  background: var(--yp-yellow-hover);
}

/* ==========================================================================
   SECTIONS & HEADINGS
   ========================================================================== */

.yp-section {
  padding: 80px 0;
}

.yp-section-white {
  background-color: var(--yp-white);
}

.yp-section-grey {
  background-color: var(--yp-grey-bg);
  border-top: 1px solid var(--yp-border);
  border-bottom: 1px solid var(--yp-border);
}

.yp-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.yp-h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--yp-text-h);
  line-height: 1.2;
  margin: 0 0 14px;
}

.yp-sub-h2 {
  font-size: 17px;
  color: var(--yp-text-p);
  line-height: 1.55;
  margin: 0;
}

/* GEO Card */
.yp-geo-card {
  background: #FFFFFF;
  border: 1.5px solid var(--yp-blue-border);
  border-radius: var(--yp-radius-md);
  padding: 28px 32px;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.04);
}

.yp-geo-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--yp-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.yp-geo-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 10px;
}

.yp-geo-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--yp-text-h);
  margin: 0;
}

/* ==========================================================================
   4. SALARY & MARKET DEMAND GRID
   ========================================================================== */

.yp-salary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.yp-salary-card {
  background: #FFFFFF;
  border: 1.5px solid var(--yp-border);
  border-radius: var(--yp-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.yp-salary-active {
  border-color: var(--yp-blue);
  box-shadow: 0 10px 24px rgba(29, 78, 216, 0.08);
}

.yp-salary-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--yp-blue);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--yp-radius-full);
  letter-spacing: 0.04em;
}

.yp-salary-level {
  font-size: 15px;
  font-weight: 700;
  color: var(--yp-text-muted);
  margin-bottom: 8px;
}

.yp-salary-val {
  font-size: 36px;
  font-weight: 900;
  color: var(--yp-text-h);
  line-height: 1;
  margin-bottom: 16px;
}

.yp-salary-desc {
  font-size: 14px;
  color: var(--yp-text-p);
  line-height: 1.5;
  margin: 0 0 24px;
  flex-grow: 1;
}

.yp-salary-bar {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: var(--yp-radius-full);
  overflow: hidden;
}

.yp-salary-bar span {
  display: block;
  height: 100%;
  background: var(--yp-blue);
  border-radius: var(--yp-radius-full);
}

.yp-demand-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.yp-demand-pill {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-md);
  padding: 16px 20px;
  text-align: center;
}

.yp-demand-pill strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin-bottom: 2px;
}

.yp-demand-pill span {
  font-size: 12px;
  color: var(--yp-text-muted);
}

.yp-free-trial-banner {
  background: #FFFFFF;
  border: 1.5px solid #1E1E1E;
  border-radius: var(--yp-radius-lg);
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.yp-free-banner-text h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 6px;
}

.yp-free-banner-text p {
  font-size: 14px;
  color: var(--yp-text-p);
  margin: 0;
}

/* ==========================================================================
   5. AI MODULE HIGHLIGHT
   ========================================================================== */

.yp-ai-section-box {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-xl);
  padding: 56px 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.yp-ai-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  background: #F3E8FF;
  color: #7E22CE;
  padding: 4px 12px;
  border-radius: var(--yp-radius-full);
  margin-bottom: 16px;
}

.yp-ai-stat-row {
  margin: 24px 0 40px;
}

.yp-ai-big-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--yp-grey-bg);
  border-radius: var(--yp-radius-md);
  padding: 18px 24px;
}

.yp-big-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--yp-blue);
  line-height: 1;
}

.yp-big-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--yp-text-h);
}

.yp-ai-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.yp-ai-card {
  background: var(--yp-grey-alt);
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-md);
  padding: 24px 20px;
}

.yp-ai-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.yp-ai-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 8px;
}

.yp-ai-card p {
  font-size: 14px;
  color: var(--yp-text-p);
  line-height: 1.5;
  margin: 0;
}

.yp-ai-tools-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--yp-border);
  margin-bottom: 32px;
}

.yp-tool-tag {
  font-family: var(--yp-mono);
  font-size: 13px;
  font-weight: 600;
  background: #F1F5F9;
  color: #1E293B;
  padding: 6px 14px;
  border-radius: var(--yp-radius-sm);
  border: 1px solid #CBD5E1;
}

.yp-ai-expert-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.yp-ai-expert-info strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin-bottom: 2px;
}

.yp-ai-expert-info span {
  font-size: 13px;
  color: var(--yp-text-muted);
}

/* ==========================================================================
   6. HOW YOU BECOME A SPECIALIST (PROCESS)
   ========================================================================== */

.yp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.yp-process-card {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-lg);
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.yp-process-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--yp-blue);
  margin-bottom: 16px;
  line-height: 1;
}

.yp-process-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 10px;
  line-height: 1.3;
}

.yp-process-card p {
  font-size: 14px;
  color: var(--yp-text-p);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   7. RESUME COMPONENT
   ========================================================================== */

.yp-resume-component {
  background: #FFFFFF;
  border: 1.5px solid var(--yp-border);
  border-radius: var(--yp-radius-xl);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.yp-resume-left {
  background: #F8FAFC;
  border-right: 1px solid var(--yp-border);
  padding: 40px 32px;
  text-align: center;
}

.yp-resume-avatar-circle {
  width: 88px;
  height: 88px;
  background: var(--yp-blue-light);
  border: 2px solid var(--yp-blue-border);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yp-resume-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 6px;
}

.yp-resume-title-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--yp-blue);
  margin: 0 0 28px;
}

.yp-resume-data-box {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-sm);
  padding: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yp-data-row {
  display: flex;
  flex-direction: column;
}

.yp-data-label {
  font-size: 11px;
  color: var(--yp-text-muted);
}

.yp-data-val {
  font-size: 14px;
  font-weight: 800;
  color: var(--yp-text-h);
}

.yp-resume-right {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.yp-resume-section h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
  margin: 0 0 16px;
}

.yp-resume-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.yp-resume-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--yp-text-h);
  font-weight: 500;
}

.yp-resume-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yp-blue);
  font-size: 20px;
  line-height: 1;
}

.yp-resume-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.yp-resume-chips span {
  font-size: 13px;
  font-weight: 600;
  background: #F1F5F9;
  color: #1E293B;
  padding: 5px 12px;
  border-radius: var(--yp-radius-sm);
  border: 1px solid #E2E8F0;
}

.yp-resume-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.yp-project-box {
  background: var(--yp-grey-alt);
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-md);
  padding: 16px;
}

.yp-project-box strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--yp-text-h);
  margin-bottom: 6px;
}

.yp-project-box p {
  font-size: 12px;
  color: var(--yp-text-p);
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   8. TEAM & SUPPORT GRID
   ========================================================================== */

.yp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.yp-team-card {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-lg);
  padding: 32px 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.yp-team-avatar {
  font-size: 36px;
  margin-bottom: 16px;
}

.yp-team-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 4px;
}

.yp-team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--yp-blue);
  margin-bottom: 12px;
}

.yp-team-card p {
  font-size: 14px;
  color: var(--yp-text-p);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   9. PROGRAM ACCORDIONS
   ========================================================================== */

.yp-program-accordion-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yp-module-acc {
  background: #FFFFFF;
  border: 1.5px solid var(--yp-border);
  border-radius: var(--yp-radius-md);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s;
  overflow: hidden;
}

.yp-module-acc[open] {
  border-color: var(--yp-blue-border);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.06);
}

.yp-module-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  background: #FFFFFF;
}

.yp-module-head::-webkit-details-marker {
  display: none;
}

.yp-module-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.yp-module-num-tag {
  font-size: 12px;
  font-weight: 700;
  background: #F1F5F9;
  color: #475569;
  padding: 4px 10px;
  border-radius: var(--yp-radius-full);
  white-space: nowrap;
}

.yp-module-title-group h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0;
}

.yp-module-meta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.yp-tag-pill {
  font-size: 12px;
  font-weight: 600;
  color: #64748B;
}

.yp-pill-live {
  color: #DC2626;
  font-weight: 700;
}

.yp-acc-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #94A3B8;
  border-bottom: 2px solid #94A3B8;
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.yp-module-acc[open] .yp-acc-arrow {
  transform: rotate(-135deg);
}

.yp-module-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--yp-border-light);
  background: #FAFAFA;
}

.yp-module-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--yp-text-p);
  margin: 16px 0;
}

.yp-module-subtopics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yp-module-subtopics li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--yp-text-h);
}

.yp-module-subtopics li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yp-blue);
  font-weight: 700;
}

/* ==========================================================================
   10. REVIEWS GRID
   ========================================================================== */

.yp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.yp-review-card {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.yp-review-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--yp-text-h);
  margin: 0 0 24px;
  font-style: normal;
}

.yp-reviewer-info strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--yp-text-h);
}

.yp-reviewer-info span {
  font-size: 12px;
  color: var(--yp-text-muted);
}

/* ==========================================================================
   11. PRICING & TARIFFS
   ========================================================================== */

.yp-pricing-box-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.yp-tariff-card {
  background: #FFFFFF;
  border: 2px solid var(--yp-blue);
  border-radius: var(--yp-radius-xl);
  padding: 44px 48px;
  box-shadow: 0 16px 40px rgba(29, 78, 216, 0.08);
}

.yp-tariff-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.yp-tariff-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  background: var(--yp-blue-light);
  color: var(--yp-blue);
  padding: 4px 12px;
  border-radius: var(--yp-radius-full);
  margin-bottom: 10px;
}

.yp-tariff-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 4px;
}

.yp-tariff-sub {
  font-size: 14px;
  color: var(--yp-text-p);
  margin: 0;
}

.yp-tariff-cost-col {
  text-align: right;
  flex-shrink: 0;
}

.yp-tariff-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--yp-text-h);
  line-height: 1;
}

.yp-tariff-period {
  font-size: 16px;
  font-weight: 600;
  color: var(--yp-text-muted);
}

.yp-tariff-cancel-note {
  font-size: 12px;
  color: var(--yp-text-muted);
  margin-top: 4px;
}

.yp-tariff-line {
  border: 0;
  border-top: 1px solid var(--yp-border);
  margin: 32px 0;
}

.yp-tariff-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.yp-tariff-features-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--yp-text-h);
  margin: 0 0 16px;
}

.yp-tariff-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yp-tariff-checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--yp-text-p);
  line-height: 1.45;
}

.yp-tariff-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16A34A;
  font-weight: 900;
}

.yp-tariff-action-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yp-tariff-payment-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.yp-tariff-payment-info span {
  font-size: 12px;
  font-weight: 600;
  color: var(--yp-text-p);
}

.yp-tariff-payment-info small {
  font-size: 11px;
  color: var(--yp-text-muted);
}

/* ==========================================================================
   12. FAQ ACCORDIONS
   ========================================================================== */

.yp-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.yp-faq-card {
  background: #FFFFFF;
  border: 1px solid var(--yp-border);
  border-radius: var(--yp-radius-md);
  overflow: hidden;
  transition: all 0.2s;
}

.yp-faq-card[open] {
  border-color: var(--yp-blue-border);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.05);
}

.yp-faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--yp-text-h);
  cursor: pointer;
  list-style: none;
}

.yp-faq-summary::-webkit-details-marker {
  display: none;
}

.yp-faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}

.yp-faq-icon::before,
.yp-faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--yp-blue);
  transition: transform 0.2s;
}

.yp-faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.yp-faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.yp-faq-card[open] .yp-faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.yp-faq-body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--yp-border-light);
}

.yp-faq-body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--yp-text-p);
  margin: 0;
}

/* ==========================================================================
   13. FINAL CONVERSION BANNER
   ========================================================================== */

.yp-final-banner {
  background: var(--yp-dark);
  border-radius: var(--yp-radius-xl);
  padding: 64px 48px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.15);
  max-width: 960px;
  margin: 0 auto;
}

.yp-final-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 223, 57, 0.2);
  color: var(--yp-yellow);
  padding: 4px 14px;
  border-radius: var(--yp-radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 223, 57, 0.3);
}

.yp-final-h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 14px;
}

.yp-final-p {
  font-size: 17px;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.yp-final-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.yp-final-guarantee {
  font-size: 13px;
  color: #64748B;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .yp-hero-main-row,
  .yp-tariff-content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .yp-hero-features-list,
  .yp-salary-grid,
  .yp-ai-cards-grid,
  .yp-process-grid,
  .yp-team-grid,
  .yp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yp-resume-component {
    grid-template-columns: 1fr;
  }

  .yp-resume-left {
    border-right: none;
    border-bottom: 1px solid var(--yp-border);
  }
}

@media (max-width: 768px) {
  .yp-hero {
    padding: 110px 0 40px;
  }

  .yp-sticky-nav {
    display: none;
  }

  .yp-hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .yp-metric-box {
    border-right: none;
    border-bottom: 1px solid var(--yp-border);
    padding-bottom: 10px;
  }

  .yp-metric-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .yp-hero-features-list,
  .yp-salary-grid,
  .yp-demand-highlights,
  .yp-ai-cards-grid,
  .yp-process-grid,
  .yp-team-grid,
  .yp-reviews-grid,
  .yp-resume-projects-grid {
    grid-template-columns: 1fr;
  }

  .yp-free-trial-banner,
  .yp-ai-stat-row .yp-ai-big-stat,
  .yp-ai-expert-strip,
  .yp-tariff-top {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }

  .yp-tariff-cost-col {
    text-align: left;
  }

  .yp-resume-right {
    padding: 28px 20px;
  }

  .yp-tariff-card {
    padding: 28px 20px;
  }

  .yp-ai-section-box {
    padding: 32px 20px;
  }

  .yp-final-banner {
    padding: 40px 24px;
  }

  .yp-btn {
    width: 100%;
  }
}
