/* ===== Глобальные сбросы и шрифты ===== */
* {
	margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
    background-color: #fff;
    color: #1a1a2e;
}
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding {
    padding: 50px 0;
}
.section-padding-sm {
    padding: 60px 0;
}
.badge-gradient {
    background: #F36054;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}
.title-h1 {
    font-size: 5.4rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
	font-family: 'Inter';
}
.title-h1 span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.subtitle {
	max-width: 600px;
	margin: 30px 0;
    font-size: 1.95rem;
    color: #4a4a5a; 
}
.btn-primary-gradient {
    background: #215C6B;
    color: #fff;
    border: none;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    display: inline-block;
}
.btn-primary-gradient:hover {
    background: #fff;
    color: #1a1a2e;
}
.btn-primary-gradient:visited {
    color: #fff;
}
.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 700;
	font-size: 1.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-white:hover {
    background: #fff;
    color: #1a1a2e;
}
@media (max-width: 992px) {
.title-h1 {
	font-size: 5.4rem;
}
.hero-stats {
	gap: 20px;
	flex-wrap: wrap;
}
.section-padding {
	padding: 50px 0;
}
}
@media (max-width: 602px) {
.hero {
	padding: 40px 0 50px 0;
}
.title-h1 {
	font-size: 5.4rem;
}
.btn-primary-gradient {
	width: 100%;
	text-align: center;
}
.btn-outline-white {
    margin: 0 auto;
}
}
@media (max-width: 450px) {
.title-h1 {
	font-size: 4.4rem;
}
}
@media (max-width: 375px) {
.title-h1 {
	font-size: 3.4rem;
}
}
/* ===== Hero (шапка) ===== */
.hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 40px;
	margin-bottom: -20px;
}
.hero-stats-item {
	font-weight: 600;
	font-size: 1.7rem;
}
.hero-stats-item span {
	font-size: 3rem;
	display: block;
	font-weight: 800;
	background: #F36054;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-image {
	position: relative;
	z-index: 2;
	text-align: center;
}
.hero-image img {
	max-width: 100%;
	border-radius: 24px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.5);
	border: 1px solid rgba(255,255,255,0.1);
}
/* ===== Блок "Проблема / Решение" ===== */
.problem-solution {
	background: #f8f9fe;
}
.icon-feature {
	display: flex;
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #fff;
	font-size: 28px;
}
.card-feature {
	height: 100%;
	padding: 32px 28px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.02);
	border-radius: 24px;
	background: #fff;
}
.card-feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 50px rgba(102, 126, 234, 0.15);
}
.card-feature h4 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 12px;
}
.magnit {
	font-size: 2.5rem;
}
.list-check {
	list-style: none;
	padding: 0;
}
.list-check li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 12px;
	font-size: 2.1rem;
}
.list-check li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #667eea;
	font-weight: 800;
	font-size: 1.2rem;
}
.magnit-but {
	width: 450px;
	border: 2px solid #999 !important;
	border-radius: 15px !important;
	box-shadow: 0 12px 30px rgba(0,0,0,0.5);
	background: #215C6B;
	color: #fff;
}
.magnit-but:hover {
	background: #fff;
	color: #333;
}
@media only screen and (max-width : 767px) {
.magnit-but {
	width: 300px;
	margin: 20px auto;
}
}
@media only screen and (max-width : 365px) {
.magnit-but {
	width: 250px !important;
}
}
/* ===== Блок преимуществ (чем отличаемся) ===== */
.benefits {
	background: #ffffff;
}
.benefit-item {
	text-align: center;
	padding: 20px 10px;
}
.benefit-item .icon {
	font-size: 4rem;
	margin-bottom: 16px;
	display: block;
}
.benefit-item h5 {
	font-weight: 700;
	font-size: 2.1rem;
}
.sizeimg {
	width: 70%;
	margin: 0 auto;
}
@media only screen and (max-width : 767px) {
.sizeimg {
	width: 100%;
}
}	
/* ===== Процесс работы ===== */
.process {
	background: #f8f9fe;
}
.process h5 {
	font-weight: 700;
	font-size: 2.1rem;
}
.step-number {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: #fff;
	border-radius: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 2.5rem;
	margin: 0 auto 16px auto;
}
/* ===== Призыв (CTA) ===== */
.cta-section {
	padding: 80px 0;
	text-align: center;
	background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
	color: #fff;
}
.cta-section h2 {
	font-size: 2.8rem;
	font-weight: 800;
}
.cta-section p {
	color: #fff;
}
/* Что я предлагаю вам */
.card-title {
	font-weight: 700;
	font-size: 2.1rem;
}

/*fonts*/
@font-face {
  font-family: 'Inter';
  font-weight: 800;
  font-style: normal;
  src: url('../fonts/Inter-Black.woff2') format('woff2'),
       url('../fonts/Inter-Black.woff') format('woff');
  font-display: swap; /* чтобы текст не пропадал, пока шрифт грузится */
}
@font-face {
  font-family: 'Inter';
  font-weight: 600;
  font-style: normal;
  src: url('../fonts/IInter-Bold.woff2') format('woff2'),
       url('../fonts/Inter-Bold.woff') format('woff');
  font-display: swap; /* чтобы текст не пропадал, пока шрифт грузится */
}
@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-style: normal;
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
       url('../fonts/Inter-Regular.woff') format('woff');
  font-display: swap; /* чтобы текст не пропадал, пока шрифт грузится */
}