.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  align-items: center;
  gap: clamp(36px, 5vw, 82px);
  padding: clamp(48px, 6vw, 96px) 0 44px;
}

.hero-copy {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(109, 76, 255, 0.08);
  border: 1px solid rgba(109, 76, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-badge span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(24, 180, 124, 0.12);
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(50px, 5.8vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #5c38ff 0%, #9a82ff 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 28px 0 0;
  max-width: 560px;
  color: #445174;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 42px 0 38px;
  max-width: 600px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.feature + .feature {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.feature-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--primary);
  border-radius: 12px;
  background: rgba(109, 76, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-icon svg,
.nav-item svg,
.lock-note svg,
.step-icon svg,
.plan-icon svg {
  width: 20px;
  height: 20px;
}

.feature span {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.google-btn {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #6f42ff);
  color: #fff;
  box-shadow: 0 22px 48px rgba(109, 76, 255, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0 24px 0 12px;
}

.google-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 58px rgba(109, 76, 255, 0.38);
}

.google-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  flex: 0 0 auto;
}

.google-btn span:last-child {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 28, 58, 0.08);
  color: #1d2948;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(43, 50, 90, 0.07);
}

.lock-note {
  width: min(100%, 560px);
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b94ad;
  font-size: 15px;
  font-weight: 700;
}

.app-preview-wrap {
  min-width: 0;
  position: relative;
}

.app-preview-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 4% 0;
  border-radius: 48px;
  background: rgba(109, 76, 255, 0.12);
  filter: blur(46px);
  z-index: -1;
}

.app-preview {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(114, 122, 160, 0.24);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.app-top {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(20, 28, 58, 0.08);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.mini-logo {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 8px 18px rgba(109, 76, 255, 0.22);
}

.mini-logo svg {
  width: 15px;
  height: 15px;
}

.app-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 600px;
}

.sidebar {
  padding: 24px 18px;
  border-right: 1px solid rgba(20, 28, 58, 0.08);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  color: #4d5872;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.nav-item.active {
  color: var(--primary-dark);
  background: rgba(109, 76, 255, 0.09);
}

.main-panel {
  padding: 32px 30px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.22));
}

.preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.welcome h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.welcome p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.score-circle {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 0 57%, transparent 58%),
    conic-gradient(var(--green) 0 84%, rgba(20, 28, 58, 0.08) 84% 100%);
  box-shadow: 0 18px 44px rgba(24, 180, 124, 0.18);
  flex: 0 0 auto;
}

.score-circle strong {
  font-size: 28px;
  letter-spacing: -0.06em;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
}

.workspace-card,
.ai-card,
.mini-card {
  border: 1px solid rgba(20, 28, 58, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 36px rgba(45, 52, 95, 0.06);
}

.workspace-card {
  padding: 22px;
}

.workspace-card h3,
.ai-card h3,
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.05em;
}

.workspace-card p,
.ai-card p,
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.job-textarea {
  width: 100%;
  height: 112px;
  margin-top: 16px;
  padding: 16px;
  resize: none;
  outline: none;
  border: 1px solid rgba(20, 28, 58, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 13px;
}

.job-textarea::placeholder {
  color: #a4abc0;
}

.start-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #6f42ff);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(109, 76, 255, 0.24);
}

.ai-card {
  padding: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1a2440;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}

.check-dot {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24, 180, 124, 0.12);
  color: var(--green);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
}

.progress-title {
  margin: 22px 0 14px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-height: 118px;
  padding: 18px 15px;
  border: 1px solid rgba(20, 28, 58, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(45, 52, 95, 0.05);
}

.stat-label {
  display: block;
  color: #1a2440;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  min-height: 35px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.stat-value small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.stat-note {
  display: block;
  margin-top: 9px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(109, 76, 255, 0.08);
  border: 1px solid rgba(109, 76, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.section-text {
  margin: 20px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(20, 28, 58, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 44px rgba(45, 52, 95, 0.07);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--primary-dark);
  background: rgba(109, 76, 255, 0.1);
  margin-bottom: 22px;
}

.service-card-icon svg {
  width: 23px;
  height: 23px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.pricing-section {
  position: relative;
  padding-top: 76px;
}

.pricing-wrap {
  overflow: hidden;
  border: 1px solid rgba(20, 28, 58, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
}

.pricing-cell {
  min-height: 64px;
  padding: 18px 22px;
  border-right: 1px solid rgba(20, 28, 58, 0.08);
  border-bottom: 1px solid rgba(20, 28, 58, 0.08);
  display: flex;
  align-items: center;
  color: #1a2440;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.pricing-cell:nth-child(4n) {
  border-right: 0;
}

.pricing-head {
  min-height: 260px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.55);
}

.pricing-head.feature-label {
  justify-content: flex-end;
}

.plan-top {
  width: 100%;
}

.plan-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 24px rgba(109, 76, 255, 0.28);
}

.plan-name {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.plan-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.price-placeholder {
  width: 100%;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(109, 76, 255, 0.08);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.plan-cta {
  width: 100%;
  min-height: 44px;
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #6f42ff);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(109, 76, 255, 0.22);
}

.plan-cta.light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  border: 1px solid rgba(109, 76, 255, 0.18);
  box-shadow: 0 12px 28px rgba(43, 50, 90, 0.08);
}

.popular {
  position: relative;
  background:
    linear-gradient(180deg, rgba(109, 76, 255, 0.08), rgba(255, 255, 255, 0.65));
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(24, 180, 124, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.feature-label h3 {
  margin: 0 0 10px;
  font-size: 25px;
  letter-spacing: -0.06em;
}

.feature-label p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.included {
  justify-content: center;
  text-align: center;
  color: var(--green);
  font-size: 21px;
  font-weight: 900;
}

.not-included {
  justify-content: center;
  text-align: center;
  color: #bdc3d1;
  font-size: 20px;
  font-weight: 900;
}

.limited {
  justify-content: center;
  text-align: center;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(24, 180, 124, 0.16);
  border-radius: 18px;
  background: rgba(24, 180, 124, 0.07);
  color: #285c4b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.pricing-note strong {
  color: #134b3a;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(20, 28, 58, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 44px rgba(45, 52, 95, 0.07);
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(109, 76, 255, 0.08);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  border-radius: 16px;
  background: rgba(109, 76, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.step-number {
  color: rgba(109, 76, 255, 0.17);
  font-size: 52px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.step-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.step-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.faq-section {
  padding-top: 74px;
  padding-bottom: 110px;
}

.faq-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(20, 28, 58, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(45, 52, 95, 0.06);
  overflow: hidden;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-dark);
  background: rgba(109, 76, 255, 0.09);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 28px 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.faq-answer p {
  margin: 0;
}