/* =========================
   HelpClub minimal CSS
   ========================= */

:root {
  --bg: #070a12;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);

  --accent: #fa9f34;
  --accent2: #ffbf66;

  --r: 18px;
  --r2: 14px;

  --container: 1180px;
  --header-h: 72px;
}

/* reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body.hc-page {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1,h2,h3 { margin: 0; line-height: 1.1; }

/* container */
.hc-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

/* header */
.hc-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7,10,18,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hc-header__inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
.hc-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: .3px;
  font-size: clamp(24px, 2.5vw, 32px);
}
.hc-logo__accent { color: var(--accent); margin-left: 6px; }

/* buttons */
.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(250,159,52,.65);
  background: rgba(250,159,52,.10);
  transition: .15s ease;
  cursor: pointer;
}
.hc-btn:hover { transform: translateY(-1px); border-color: rgba(250,159,52,.95); }
.hc-btn:active { transform: translateY(0); }

.hc-btn--primary {
  border-color: rgba(250,159,52,.75);
  background: linear-gradient(180deg, rgba(250,159,52,.98), rgba(250,159,52,.70));
  color: #1b1b1b;
}

/* sections = each fullscreen */
.hc-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, #04050a 100%);
}
.hc-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: 
    radial-gradient(1200px 800px at 50% 0%, rgba(255,255,255,.04), transparent 70%),
    radial-gradient(1000px 600px at 20% 50%, rgba(250,159,52,.08), transparent 60%),
    radial-gradient(1000px 600px at 80% 50%, rgba(80,140,255,.08), transparent 60%);
  pointer-events:none;
  z-index: 0;
}
.hc-section > .hc-container { 
  position: relative; 
  z-index: 1; 
  width: 100%;
}

/* cards / panels */
.hc-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: var(--r);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

/* typography */
.hc-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 800;
  margin-bottom: 14px;
}
.hc-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}
.hc-text { color: var(--text); line-height: 1.75; }
.hc-muted { color: var(--muted); }

.hc-lead {
  padding: 14px 16px;
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  margin: 14px 0;
}

/* HERO: 50/50, no paddings */
.hc-hero{
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
}

/* LEFT: image full height */
.hc-hero__left{
  position: relative;
  height: 100%;
  overflow: hidden; /* чтобы картинка не лезла на правую часть */
  margin: 0;
  padding: 0;
}

/* IMPORTANT: fills full height/width of left half */
.hc-hero__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;          /* картинка помещается целиком */
  object-position: left center; /* центрируем по вертикали */
  display: block;
}

/* RIGHT: texts aligned left, no padding from screen edge except controlled */
.hc-hero__right{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;      /* НЕТ отступов у половины */
  margin: 0;
}

.hc-hero__content{
  width: 100%;
  max-width: 720px;
  padding: 0 clamp(24px, 4vw, 48px); /* адаптивный отступ */
  text-align: left;
}

.hc-hero__title{
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  font-size: clamp(32px, 4.5vw, 66px);
  font-weight: 800;
  margin: 0 0 clamp(12px, 1.5vw, 16px);
  line-height: 1.2;
}

.hc-hero__lead{
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 14px;
  padding: clamp(12px, 1.5vw, 14px) clamp(14px, 2vw, 16px);
  line-height: 1.7;
  margin: 0 0 clamp(12px, 1.5vw, 14px);
  font-size: clamp(14px, 1.5vw, 16px);
}

.hc-hero__text{
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 clamp(14px, 2vw, 18px);
  font-size: clamp(14px, 1.4vw, 16px);
}

/* Button minimal */
.hc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(250,159,52,.75);
  background: rgba(250,159,52,.10);
  text-decoration: none;
}
.hc-btn--primary{
  background: linear-gradient(180deg, rgba(250,159,52,.98), rgba(250,159,52,.70));
  color: #1b1b1b;
}

/* Mobile: stack */
@media (max-width: 900px){
  .hc-hero{
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }
  .hc-hero__left{
    height: 360px;
  }
  .hc-hero__content{
    padding: clamp(24px, 5vw, 40px) clamp(18px, 4vw, 24px);
    max-width: 100%;
  }
  .hc-hero__img{
    object-fit: contain;
    object-position: center center;
  }
}

/* =========================
   PROCESS section
   ========================= */
.hc-process__wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  padding: 54px 0;
}
.hc-process__head {
  display: grid;
  gap: 20px;
  text-align: center;
}
.hc-process__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hc-process__subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  opacity: 0.9;
}
.hc-process__text {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.hc-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.hc-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-radius: var(--r);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250,159,52,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hc-card:hover::before {
  opacity: 1;
}
.hc-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hc-card__badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 24px;
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(250,159,52,.3);
}
.hc-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 24px);
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}
.hc-card__text {
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(15px, 1.4vw, 17px);
  margin: 0;
}
.hc-process__cta {
  text-align: center;
  margin-top: 8px;
}

/* =========================
   CTA STRIP (accent background)
   ========================= */
.hc-cta-strip {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 32px 0;
  position: relative;
}
.hc-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hc-cta-strip__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.hc-btn--cta {
  background: rgba(26, 26, 26, 0.95);
  color: var(--accent);
  border-color: rgba(26, 26, 26, 0.95);
  flex-shrink: 0;
}
.hc-btn--cta:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

/* =========================
   CONSULTATION cards (images full width)
   ========================= */
.hc-consult__panel { padding: 54px 26px; }
.hc-consult__head {
  margin-bottom: 32px;
  text-align: center;
}
.hc-consult__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hc-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.hc-feature {
  padding: 0;
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.20);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.hc-feature:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 4px 12px rgba(0,0,0,.3);
  transform: translateY(-2px);
}
.hc-feature__media {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: rgba(255,255,255,.20);
  margin-bottom: 12px;
}
.hc-feature__title,
.hc-feature__text {
  padding: 0 14px;
}
.hc-feature__title {
  padding-top: 14px;
  margin-bottom: 8px;
}
.hc-feature__text {
  padding-bottom: 14px;
}
.hc-feature__img {
  width: 100%;
  height: 240px;
  object-fit: cover;   /* важное: на ширину карточки */
  display: block;
}
.hc-feature__title { 
  font-family: 'Manrope', sans-serif;
  font-weight: 800; 
  font-size: 18px; 
  margin-bottom: 8px; 
}
.hc-feature__text { 
  color: var(--muted); 
  line-height: 1.75; 
}
.hc-feature__text strong {
  color: var(--text);
  font-weight: 700;
}

/* =========================
   FORM
   ========================= */
.hc-form__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 32px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hc-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 26px 54px;
}
.hc-form__media {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hc-form__image {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: contain;
  object-position: center center;
}
.hc-form__box { margin-top: 20px; display: grid; gap: 18px; }
.hc-field__label { 
  font-weight: 800; 
  margin-bottom: 8px; 
  display: block;
  font-size: 16px;
}
.hc-field__input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
  font-size: 16px;
  transition: all 0.2s ease;
}
.hc-field__input:focus {
  border-color: rgba(250,159,52,.70);
  box-shadow: 0 0 0 4px rgba(250,159,52,.14);
  background: rgba(255,255,255,.08);
}
.hc-form__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================
   PRIVACY PAGE
   ========================= */
.hc-privacy__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 0;
}
.hc-privacy__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 32px;
  line-height: 1.2;
}
.hc-privacy__text {
  color: var(--text);
  line-height: 1.75;
  font-size: clamp(16px, 1.5vw, 18px);
}
.hc-privacy__text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin: 32px 0 16px;
  line-height: 1.3;
}
.hc-privacy__text p {
  margin: 0 0 20px;
  color: var(--muted);
}
.hc-privacy__text ul {
  margin: 16px 0 24px;
  padding-left: 24px;
  color: var(--muted);
}
.hc-privacy__text li {
  margin: 8px 0;
  line-height: 1.7;
}

/* =========================
   SUCCESS PAGE
   ========================= */
.hc-success__content {
  max-width: 700px;
  margin: 0 auto;
  padding: 54px 0;
  text-align: center;
}
.hc-success__icon {
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease-out;
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.hc-success__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.2;
}
.hc-success__text {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 40px;
}
.hc-success__info {
  text-align: left;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px;
  margin: 0 0 32px;
}
.hc-success__subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
}
.hc-success__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.hc-success__list li {
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(16px, 1.5vw, 18px);
  padding-left: 32px;
  position: relative;
}
.hc-success__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
  font-size: 20px;
}
.hc-success__list li strong {
  color: var(--text);
  font-weight: 700;
}
.hc-success__actions {
  margin-top: 32px;
}

/* footer */
.hc-footer { background: var(--accent); }
.hc-footer__link {
  display: block;
  text-align: center;
  padding: 18px;
  text-decoration: underline;
  color: #f4efe6;
  font-weight: 800;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {
  .hc-hero__grid { grid-template-columns: 1fr; height: auto; }
  .hc-hero { padding: 42px 0; align-items: center; }
  .hc-hero > .hc-container { height: auto; }
  .hc-hero__media { height: 360px; justify-content: center; }
  .hc-hero__image { height: 100%; width: auto; }

  .hc-cards { grid-template-columns: 1fr; }
  .hc-cards2 { grid-template-columns: 1fr; }
  .hc-features { grid-template-columns: 1fr; }
  .hc-cta-strip__inner { flex-direction: column; text-align: center; gap: 20px; }
  .hc-cta-strip__title { text-align: center; }
  .hc-form__grid { grid-template-columns: 1fr; }
  .hc-process__wrap { gap: 36px; }
  .hc-card { padding: 24px; }
}
