/* .t-container {
  max-width: 1200px; /или 1400px, зависит от твоего дизайна 
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;  /* одинаковый отступ слева 
  padding-right: 60px; /* одинаковый отступ справа 
  box-sizing: border-box;
}
.uc-myblock {
  padding-left: 60px;
  padding-right: 60px;
  max-width: 1200px; /* по желанию 
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
Ограничиваем ширину и центрируем весь блок 
.uc-fixedwidth {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
} 
*/
/* Применяется ко всем Zero Block (record-type="396") */
/* Центруем и ограничиваем ширину всех Zero Blocks */
/* Центруем ВСЕ Zero Blocks */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#4299e1;
  --accent:#442FFF;
  --navy:#01142f;
  --light:#f1f2f2;
  --text:#0f0f0f;
  --text2:#3c3c3c;
  --muted:#64748b;
  --border:#e2e8f0;
  --green:#38a169;
  --r-btn:6px;
  --r-card:10px;
  --r-form:12px;
  --r-input:6px;
  --hero-image-desktop:url('desktop.webp');
  --hero-image-mobile:url('mobile.webp');
}
html{scroll-behavior:smooth}
body{font-family:'Montserrat',sans-serif;color:var(--text);background:#fff;overflow-x:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:1200px;margin:0 auto;padding:0 40px}
section{padding:56px 0}

/* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;border-radius:var(--r-btn);font-family:inherit;font-weight:700;font-size:15px;cursor:pointer;border:none;transition:all .25s;text-align:center;line-height:1.3;text-decoration:none !important}
.btn:link,.btn:visited{color:inherit;text-decoration:none !important}
.btn svg{flex-shrink:0}
.btn-accent,.btn-accent:link,.btn-accent:visited{background:var(--accent);color:#fff !important;-webkit-text-fill-color:#fff}
.btn-accent:hover{background:#2f1fd6;transform:translateY(-1px);box-shadow:0 6px 20px rgba(68,47,255,.35)}
.btn-accent:disabled{background:#c0c0c0;cursor:not-allowed;transform:none;box-shadow:none}
.btn-blue,.btn-blue:link,.btn-blue:visited{background:var(--blue);color:#fff !important;-webkit-text-fill-color:#fff}
.btn-blue:hover{background:#2d7dd2;transform:translateY(-1px)}
.btn-outline,.btn-outline:link,.btn-outline:visited{background:transparent;color:#fff !important;-webkit-text-fill-color:#fff;border:2px solid #fff}
.btn-outline:hover{background:#fff;color:var(--navy)}
.btn-full{width:100%}
.btn-success{background:var(--green) !important;cursor:default !important}

/* FORMS */
.form-wrap{background:#fff;border-radius:var(--r-form);padding:32px;box-shadow:0 20px 60px rgba(0,0,0,.25)}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:12px;font-weight:600;color:var(--muted);margin-bottom:6px;text-transform:uppercase;letter-spacing:.5px}
.form-group input,
.form-group select{width:100%;padding:13px 16px;border:1.5px solid var(--border);border-radius:var(--r-input);font-family:inherit;font-size:15px;color:var(--text);background:#fff;transition:border-color .2s,box-shadow .2s;outline:none;appearance:none;-webkit-appearance:none}
.form-group input:focus,
.form-group select:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(66,153,225,.15)}
.form-group.error input,
.form-group.error select{border-color:var(--accent)}
.form-error{font-size:11px;color:var(--accent);margin-top:4px;display:none}
.form-group.error .form-error{display:block}
.form-privacy{font-size:11px;color:var(--muted);margin-top:12px;text-align:center;line-height:1.5}
.form-privacy a{color:var(--blue);text-decoration:underline}

/* SECTION TITLES */
.section-title{font-size:32px;font-weight:700;line-height:1.2;color:var(--text);letter-spacing:-.01em}
.section-subtitle{font-size:17px;color:var(--muted);margin-top:10px;line-height:1.6}
.title-center{text-align:center}

/* ==============================
   1. HERO
================================*/
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:0;
  background-image:var(--hero-image-desktop);
  background-size:cover;
  background-position:center right;
  background-color:var(--navy);
  background-repeat:no-repeat;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(1,20,47,.72) 0%,rgba(1,20,47,.72) 45%,rgba(1,20,47,.35) 70%,rgba(1,20,47,.05) 100%);
  pointer-events:none;
  z-index:1;
}
.hero .container{
  position:relative;
  z-index:2;
  width:100%;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:60px;
  align-items:center;
  padding-top:60px;
  padding-bottom:60px;
}
.hero-left{color:#fff}
.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(66,153,225,.25);border:1px solid rgba(66,153,225,.5);
  color:#a8d4f5;border-radius:100px;padding:6px 16px;font-size:12px;font-weight:600;
  text-transform:uppercase;letter-spacing:.8px;margin-bottom:24px;backdrop-filter:blur(4px);
}
.hero-badge::before{
  content:'';width:8px;height:8px;border-radius:50%;
  background:var(--blue);flex-shrink:0;
  box-shadow:0 0 8px var(--blue);
}
.hero h1{
  font-size:clamp(26px,3.5vw,46px);
  font-weight:700;
  line-height:1.15;
  margin-bottom:20px;
  color:#fff;
}
.hero h1 span{color:var(--accent)}
.hero-sub{font-size:17px;color:rgba(255,255,255,.8);line-height:1.65;margin-bottom:32px}
.hero-checks{list-style:none;display:flex;flex-direction:column;gap:12px;margin-bottom:0}
.hero-checks li{
  display:flex;align-items:flex-start;gap:12px;
  font-size:15px;color:rgba(255,255,255,.9);line-height:1.4;
}
.hero-checks li .check-icon{
  flex-shrink:0;width:22px;height:22px;border-radius:50%;
  background:var(--green);display:flex;align-items:center;justify-content:center;margin-top:1px;
}
.hero-checks li .check-icon svg{width:12px;height:12px;fill:none;stroke:#fff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

.hero-form .form-wrap{max-width:420px}
.hero-form .form-title{font-size:20px;font-weight:700;color:var(--navy);margin-bottom:6px}
.hero-form .form-desc{font-size:13px;color:var(--muted);margin-bottom:24px;line-height:1.5}

/* ==============================
   2. URGENCY STRIP
================================*/
.urgency-strip{
  background:#1a0a05;
  padding:18px 0;
}
.urgency-strip .container{
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:12px 32px;text-align:center;
}
.urgency-strip .urgency-item{
  display:flex;align-items:center;gap:10px;
  color:#fff;font-size:14px;font-weight:600;
}
.urgency-strip .urgency-icon{
  width:32px;height:32px;flex-shrink:0;
  background:var(--accent);border-radius:6px;
  display:flex;align-items:center;justify-content:center;
}
.urgency-strip .urgency-icon svg{width:18px;height:18px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.urgency-divider{width:1px;height:32px;background:rgba(255,255,255,.2);display:block}

/* ==============================
   3. COUNTDOWN
================================*/
.countdown-section{background:#fff;padding:56px 0}
.countdown-section .container{text-align:center}
.countdown-label{font-size:14px;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:12px}
.countdown-title{font-size:28px;font-weight:700;color:var(--navy);margin-bottom:32px}
.timer-wrap{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--navy);border-radius:12px;padding:24px 40px;
  margin-bottom:32px;
}
.timer-block{text-align:center}
.timer-num{
  font-size:52px;font-weight:900;color:#fff;line-height:1;
  font-variant-numeric:tabular-nums;letter-spacing:2px;
}
.timer-sep{font-size:48px;font-weight:900;color:var(--accent);line-height:1;margin-bottom:20px}
.timer-label{font-size:11px;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:1px;margin-top:6px}

/* ==============================
   4. SOCIAL PROOF
================================*/
.social-proof{background:var(--light)}
.stats-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
  margin-top:40px;
}
.stat-card{
  background:#fff;border-radius:var(--r-card);padding:32px 24px;
  text-align:center;box-shadow:0 2px 16px rgba(0,0,0,.06);
  border-top:4px solid var(--accent);
}
.stat-num{font-size:42px;font-weight:900;color:var(--accent);line-height:1;margin-bottom:10px}
.stat-desc{font-size:14px;color:var(--muted);font-weight:500;line-height:1.4}

/* ==============================
   4.5 AUDIENCE
================================*/
.audience-section{background:#fff;padding:56px 0}
.audience-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
  margin-top:40px;
}
.audience-card{
  display:flex;align-items:center;gap:14px;
  background:var(--light);border-radius:var(--r-card);
  padding:18px 20px;border-left:3px solid var(--blue);
  transition:transform .15s,box-shadow .15s;
}
.audience-card:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.08)}
.audience-card--accent{
  background:linear-gradient(135deg,#f6f3ff 0%,#e7e0ff 100%);
  border-left-color:var(--accent);
}
.audience-icon{
  flex-shrink:0;width:40px;height:40px;border-radius:50%;
  background:var(--blue);display:flex;align-items:center;justify-content:center;
}
.audience-card--accent .audience-icon{background:var(--accent)}
.audience-icon svg{width:20px;height:20px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.audience-text{font-size:14px;color:var(--text);line-height:1.45}
.audience-text strong{font-weight:700;display:block;margin-bottom:2px}

/* ==============================
   INLINE CTA STRIP
================================*/
.cta-strip{
  background:linear-gradient(135deg,var(--navy) 0%,#0a2452 100%);
  border-radius:var(--r-card);padding:28px 32px;margin-top:32px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.cta-strip-text{color:#fff;font-size:18px;font-weight:600;line-height:1.4;flex:1}
.cta-strip-text small{display:block;font-size:13px;color:rgba(255,255,255,.65);font-weight:400;margin-top:4px}
.cta-strip .btn{flex-shrink:0;white-space:nowrap}
@media (max-width:768px){
  .cta-strip{flex-direction:column;align-items:stretch;text-align:center;padding:24px}
  .cta-strip-text{font-size:16px}
  .audience-grid{grid-template-columns:1fr;gap:12px}
}
@media (min-width:769px) and (max-width:1024px){
  .audience-grid{grid-template-columns:repeat(2,1fr)}
}

/* ==============================
   5. PAINS
================================*/
.pains-section{background:#fff}
.pains-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:40px;margin-bottom:32px;
}
.pain-card{
  border-radius:var(--r-card);padding:28px 24px;
  background:#fff;
  border:1.5px solid var(--border);
  border-left:4px solid var(--accent);
  box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.pain-card-icon{
  width:48px;height:48px;border-radius:10px;
  background:rgba(68,47,255,.08);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.pain-card-icon svg{width:26px;height:26px;fill:none;stroke:var(--accent);stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.pain-card-law{font-size:11px;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:.8px;margin-bottom:8px}
.pain-card-title{font-size:18px;font-weight:700;color:var(--text);margin-bottom:10px}
.pain-card-desc{font-size:14px;color:var(--muted);line-height:1.6}
.pain-bridge{
  background:linear-gradient(135deg,var(--blue),#2d7dd2);
  border-radius:var(--r-card);padding:28px 36px;
  display:flex;align-items:center;gap:24px;color:#fff;
}
.pain-bridge-icon{
  width:56px;height:56px;flex-shrink:0;
  background:rgba(255,255,255,.15);border-radius:12px;
  display:flex;align-items:center;justify-content:center;
}
.pain-bridge-icon svg{width:30px;height:30px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.pain-bridge-text{font-size:20px;font-weight:600;line-height:1.4}
.pain-bridge-sub{font-size:14px;opacity:.8;margin-top:6px}

/* ==============================
   6. REVIEWS
================================*/
.reviews-section{background:var(--light)}
.reviews-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:40px;
}
.review-card{
  background:#fff;border-radius:var(--r-card);
  padding:28px 24px;box-shadow:0 2px 16px rgba(0,0,0,.07);
  display:flex;flex-direction:column;gap:16px;
}
.review-stars{color:#f59e0b;font-size:18px;letter-spacing:2px}
.review-text{font-size:15px;color:var(--text2);line-height:1.65;flex:1}
.review-author{display:flex;align-items:center;gap:14px;padding-top:16px;border-top:1px solid var(--border)}
.review-avatar{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--navy));
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:800;font-size:16px;flex-shrink:0;
}
.review-name{font-size:14px;font-weight:700;color:var(--text)}
.review-city{font-size:12px;color:var(--muted);margin-top:2px}

/* ==============================
   7. COMPARISON
================================*/
.comparison-section{background:#fff}
.comparison-wrap{
  margin-top:40px;
  border-radius:var(--r-card);overflow:hidden;
  border:1.5px solid var(--border);box-shadow:0 4px 24px rgba(0,0,0,.07);
}
.comparison-table{width:100%;border-collapse:collapse}
.comparison-table th,
.comparison-table td{padding:18px 24px;text-align:left;border-bottom:1px solid var(--border);font-size:15px}
.comparison-table th{
  background:var(--navy);color:#fff;font-weight:700;font-size:14px;
  text-transform:uppercase;letter-spacing:.5px;
}
.comparison-table th:first-child{border-right:1px solid rgba(255,255,255,.1)}
.comparison-table th:nth-child(2){text-align:center;color:rgba(255,255,255,.6)}
.comparison-table th:nth-child(3){text-align:center;color:var(--accent)}
.comparison-table td:first-child{font-weight:600;color:var(--text)}
.comparison-table td:nth-child(2){text-align:center;color:var(--muted)}
.comparison-table td:nth-child(3){text-align:center;color:var(--green);font-weight:700}
.comparison-table tr:last-child td{border-bottom:none}
.comparison-table tr:nth-child(even){background:var(--light)}
.comparison-table .anpo-col{background:rgba(66,153,225,.05) !important}
.col-bad{color:#dc2626 !important}

/* ==============================
   8. HOW IT WORKS
================================*/
.how-section{background:var(--navy);color:#fff}
.how-section .section-title{color:#fff}
.how-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  margin-top:48px;position:relative;
}
.how-grid::before{
  content:'';position:absolute;top:36px;left:calc(12.5% + 16px);
  right:calc(12.5% + 16px);height:2px;
  background:linear-gradient(90deg,var(--blue),var(--accent));
  z-index:0;
}
.how-step{
  text-align:center;padding:0 20px;position:relative;z-index:1;
}
.how-num{
  width:72px;height:72px;border-radius:50%;
  background:linear-gradient(135deg,var(--blue),#2d7dd2);
  display:flex;align-items:center;justify-content:center;
  font-size:28px;font-weight:900;color:#fff;
  margin:0 auto 20px;
  border:4px solid var(--navy);
  box-shadow:0 0 0 2px var(--blue);
}
.how-step-title{font-size:16px;font-weight:700;margin-bottom:10px}
.how-step-desc{font-size:13px;color:rgba(255,255,255,.65);line-height:1.6}

/* ==============================
   9. GUARANTEE
================================*/
.guarantee-section{background:var(--light)}
.guarantee-wrap{
  background:#fff;border-radius:var(--r-card);
  padding:40px 48px;
  display:flex;align-items:center;gap:40px;
  box-shadow:0 4px 24px rgba(0,0,0,.07);
  border:2px solid var(--green);
}
.guarantee-icon-wrap{
  flex-shrink:0;width:100px;height:100px;
  background:linear-gradient(135deg,rgba(56,161,105,.1),rgba(56,161,105,.2));
  border-radius:50%;border:3px solid var(--green);
  display:flex;align-items:center;justify-content:center;
}
.guarantee-icon-wrap svg{width:52px;height:52px;fill:none;stroke:var(--green);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.guarantee-title{font-size:24px;font-weight:700;color:var(--navy);margin-bottom:10px}
.guarantee-desc{font-size:16px;color:var(--text2);line-height:1.65}
.guarantee-highlight{color:var(--green);font-weight:700}

/* ==============================
   10. TRUST CHIPS
================================*/
.trust-section{background:#fff;padding:40px 0}
.trust-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
  margin-top:32px;
}
.trust-chip{
  background:var(--light);border-radius:var(--r-card);
  padding:24px 20px;text-align:center;
  border:1px solid var(--border);
  transition:box-shadow .2s;
}
.trust-chip:hover{box-shadow:0 4px 20px rgba(0,0,0,.1)}
.trust-chip-icon{
  width:52px;height:52px;margin:0 auto 14px;
  background:linear-gradient(135deg,var(--blue),#2d7dd2);
  border-radius:12px;display:flex;align-items:center;justify-content:center;
}
.trust-chip-icon svg{width:28px;height:28px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.trust-chip-title{font-size:14px;font-weight:700;color:var(--text);margin-bottom:6px}
.trust-chip-desc{font-size:12px;color:var(--muted);line-height:1.5}

/* ==============================
   11. FAQ
================================*/
.faq-section{background:var(--light)}
.faq-list{margin-top:40px;display:flex;flex-direction:column;gap:12px}
.faq-item{
  background:#fff;border-radius:var(--r-card);
  border:1.5px solid var(--border);
  overflow:hidden;
}
.faq-question{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:22px 28px;background:none;border:none;cursor:pointer;
  font-family:inherit;font-size:17px;font-weight:700;color:var(--text);
  text-align:left;transition:background .2s;
}
.faq-question:hover{background:var(--light)}
.faq-question.open{color:var(--blue)}
.faq-chevron{
  flex-shrink:0;width:28px;height:28px;border-radius:50%;
  background:var(--light);display:flex;align-items:center;justify-content:center;
  transition:transform .3s,background .2s;
}
.faq-question.open .faq-chevron{transform:rotate(180deg);background:var(--blue)}
.faq-chevron svg{width:14px;height:14px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;transition:stroke .2s}
.faq-question.open .faq-chevron svg{stroke:#fff}
.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .4s ease,padding .3s;
  padding:0 28px;font-size:15px;color:var(--text2);line-height:1.7;
}
.faq-answer.open{max-height:500px;padding-bottom:24px}

/* ==============================
   12. FINAL CTA
================================*/
.final-cta{
  background:var(--navy);
  border-left:6px solid var(--accent);
  position:relative;overflow:hidden;
}
.final-cta::after{
  content:'';position:absolute;right:-100px;top:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(66,153,225,.07);pointer-events:none;
}
.final-cta .container{
  display:grid;grid-template-columns:1fr 380px;
  gap:60px;align-items:center;
}
.cta-left{color:#fff}
.cta-title{font-size:32px;font-weight:700;line-height:1.2;margin-bottom:20px;letter-spacing:-.01em}
.cta-title span{color:var(--accent)}
.cta-benefits{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:0}
.cta-benefits li{
  display:flex;align-items:flex-start;gap:12px;
  font-size:15px;color:rgba(255,255,255,.9);line-height:1.4;
}
.cta-benefit-icon{
  flex-shrink:0;width:22px;height:22px;border-radius:50%;
  background:var(--accent);display:flex;align-items:center;justify-content:center;
  margin-top:1px;
}
.cta-benefit-icon svg{width:11px;height:11px;fill:none;stroke:#fff;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

.cta-form .form-wrap{background:#fff}
.cta-form .form-title{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:4px}
.cta-form .form-desc{font-size:13px;color:var(--muted);margin-bottom:20px}

/* ==============================
   13. CAREER HELP
================================*/
.career-help{
  position:relative;
  padding:88px 0;
  background-image:var(--career-help-image-desktop);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  overflow:hidden;
}
.career-help::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(1,20,47,.82) 0%,rgba(1,20,47,.58) 45%,rgba(1,20,47,.44) 100%);
}
.career-help::after{
  content:'';
  position:absolute;
  inset:auto -120px -180px auto;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(66,153,225,.16);
  filter:blur(18px);
}
.career-help .container{
  position:relative;
  z-index:2;
}
.career-help-card{
  max-width:980px;
  margin:0 auto;
  padding:48px 52px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.90);
  box-shadow:0 32px 90px rgba(1,20,47,.28);
  backdrop-filter:blur(12px);
}
.career-help-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(68,47,255,.10);
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.career-help-badge::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(68,47,255,.12);
}
.career-help-title{
  font-size:clamp(34px,4.2vw,58px);
  font-weight:800;
  line-height:1.02;
  letter-spacing:-.03em;
  color:var(--navy);
  margin-bottom:16px;
}
.career-help-subtitle{
  max-width:760px;
  font-size:22px;
  line-height:1.5;
  color:rgba(1,20,47,.72);
  margin-bottom:28px;
}
.career-help-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 16px;
  margin-bottom:28px;
}
.career-help-point{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  min-height:60px;
  border-radius:16px;
  background:rgba(1,20,47,.06);
  color:var(--navy);
  font-size:14px;
  font-weight:600;
}
.career-help-point::before{
  content:'';
  width:20px;
  height:20px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--accent));
  box-shadow:0 8px 18px rgba(66,153,225,.22);
  flex-shrink:0;
}
.career-help-form{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:end;
}
.career-help-form .form-group{
  margin-bottom:0;
}
.career-help-form .form-group label{
  color:rgba(1,20,47,.56);
}
.career-help-form .form-group input{
  min-height:64px;
  padding:18px 20px;
  border-width:1.5px;
  border-color:rgba(1,20,47,.18);
  font-size:18px;
  color:var(--navy);
  background:rgba(255,255,255,.94);
}
.career-help-form .form-group input::placeholder{
  color:rgba(1,20,47,.42);
}
.career-help-form .btn{
  min-height:64px;
  padding:18px 30px;
  font-size:17px;
  box-shadow:0 18px 34px rgba(68,47,255,.26);
}
.career-help-privacy{
  margin-top:16px;
  font-size:12px;
  color:rgba(1,20,47,.62);
  line-height:1.6;
}
.career-help-privacy a{
  color:var(--blue);
  text-decoration:underline;
}

/* ==============================
   FOOTER
================================*/
.site-footer{
  background:#000c1e;padding:32px 0;
  border-top:1px solid rgba(255,255,255,.07);
}
.site-footer .container{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;
}
.footer-logo{font-size:22px;font-weight:700;color:#fff;letter-spacing:1px}
.footer-logo span{color:var(--blue)}
.footer-contacts{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.footer-phone{font-size:18px;font-weight:700;color:#fff}
.footer-email{font-size:14px;color:var(--muted)}
.footer-copy{font-size:12px;color:rgba(255,255,255,.3);text-align:right}

/* ==============================
   FLOATING & STICKY
================================*/
.floating-call{
  position:fixed;right:20px;bottom:100px;z-index:100;
  width:58px;height:58px;border-radius:50%;
  background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 24px rgba(68,47,255,.5);
  border:none;cursor:pointer;
  animation:pulse-ring 2.5s ease-in-out infinite;
  transition:transform .2s;
}
.floating-call:hover{transform:scale(1.1)}
.floating-call svg{width:28px;height:28px;fill:none;stroke:#fff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
@keyframes pulse-ring{
  0%{box-shadow:0 0 0 0 rgba(68,47,255,.5),0 6px 24px rgba(68,47,255,.4)}
  70%{box-shadow:0 0 0 16px rgba(68,47,255,0),0 6px 24px rgba(68,47,255,.4)}
  100%{box-shadow:0 0 0 0 rgba(68,47,255,0),0 6px 24px rgba(68,47,255,.4)}
}

.sticky-bar{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:99;
  background:#fff;padding:12px 16px;
  box-shadow:0 -4px 20px rgba(0,0,0,.15);
  border-top:2px solid var(--accent);
}
.sticky-bar-inner{display:flex;gap:10px}
.sticky-bar .btn{flex:1;padding:14px 10px;font-size:14px;border-radius:var(--r-btn)}
.sticky-bar .btn-call,.sticky-bar .btn-call:link,.sticky-bar .btn-call:visited{background:var(--navy);color:#fff !important;-webkit-text-fill-color:#fff}
.sticky-bar .btn-call:hover{background:#01142f}

/* ==============================
   RESPONSIVE
================================*/
@media(max-width:1024px){
  .container{padding:0 24px}
  .hero .container{grid-template-columns:1fr;gap:40px;padding-top:80px}
  .hero-form .form-wrap{max-width:100%}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .pains-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .how-grid{grid-template-columns:repeat(2,1fr);gap:32px}
  .how-grid::before{display:none}
  .final-cta .container{grid-template-columns:1fr;gap:40px}
  .career-help-card{padding:40px 36px}
  .career-help-subtitle{font-size:20px}
  .comparison-table th,.comparison-table td{padding:14px 16px;font-size:13px}
}

@media(max-width:768px){
  :root{--r-card:8px;--r-form:10px}
  section{padding:36px 0}
  .container{padding:0 16px}
  .section-title{font-size:24px}
  .section-subtitle{font-size:15px}

  .hero{
    background-image:var(--hero-image-mobile) !important;
    background-size:cover !important;
    background-position:top center !important;
    background-color:var(--navy);
    min-height:auto;
    padding:80px 0 48px;
  }
  .hero::before{
    background:rgba(1,20,47,.78) !important;
  }
  .hero .container{padding-top:0;grid-template-columns:1fr;gap:32px}
  .hero h1{font-size:26px}
  .hero-sub{font-size:15px}

  .urgency-strip .container{flex-direction:column;gap:16px}
  .urgency-divider{display:none}

  .timer-wrap{padding:20px 24px;gap:4px}
  .timer-num{font-size:40px}
  .timer-sep{font-size:36px}

  .stats-grid{grid-template-columns:repeat(2,1fr);gap:16px}
  .stat-num{font-size:34px}

  .pains-grid{grid-template-columns:1fr}
  .pain-bridge{flex-direction:column;text-align:center;padding:24px}

  .reviews-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr 1fr}

  .how-grid{grid-template-columns:1fr;gap:24px}
  .guarantee-wrap{flex-direction:column;text-align:center;padding:28px 24px}

  .comparison-table{font-size:12px}
  .comparison-table th,.comparison-table td{padding:12px 10px}

  .career-help{
    padding:56px 0;
    background-image:var(--career-help-image-mobile) !important;
    background-position:center;
  }
  .career-help::before{
    background:linear-gradient(180deg,rgba(1,20,47,.78) 0%,rgba(1,20,47,.54) 100%);
  }
  .career-help-card{
    padding:28px 22px;
    border-radius:18px;
  }
  .career-help-badge{
    justify-content:center;
    width:100%;
  }
  .career-help-title{
    font-size:32px;
    text-align:center;
  }
  .career-help-subtitle{
    font-size:17px;
    text-align:center;
    margin-bottom:22px;
  }
  .career-help-points{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-bottom:22px;
  }
  .career-help-form{
    grid-template-columns:1fr;
    gap:14px;
  }
  .career-help-form .btn{
    width:100%;
  }
  .career-help-privacy{
    text-align:center;
  }

  .sticky-bar{display:block}
  .floating-call{bottom:80px}

  .site-footer .container{flex-direction:column;text-align:center;gap:12px}
  .footer-contacts{justify-content:center}
  .footer-copy{text-align:center}
}

@media(max-width:400px){
  .timer-num{font-size:32px}
  .stats-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr}
}
