.hero_section {
    padding:80px 0;
    @media screen and (max-width:1200px) {padding:60px 0;}
    @media screen and (max-width:1025px) {padding:40px 0;}
    @media screen and (max-width:768px) {padding:20px 0;}
}
.gradient_section {
    background:linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
}
.color_section {
    background:#F9FAFB;
}
.hero_content {
    display:grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    @media screen and (max-width:1025px) {grid-template-columns: 1fr;gap:30px;}
}
.hero_text {
    color:#fff;
}
.hero_section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color:#1F2937;
    @media screen and (max-width:1200px) {font-size:36px;}
    @media screen and (max-width:768px) {font-size:26px;}
    @media screen and (max-width:575px) {font-size:20px;}
}
.hero_section.gradient_section h1 {
    color:#fff;
}
.hero_content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    @media screen and (max-width:1200px) {font-size:18px;}
    @media screen and (max-width:768px) {font-size:16px;}
    @media screen and (max-width:575px) {font-size:14px;}
}
.hero_preview {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero_card {
    background: white;
    color: #1F2937;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.hero_card_icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.hero_card_icon img {
    width:35px;
    height:28px;
}
.hero_card_title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight:700;
}
.hero_card_list {
    margin:20px 0;
    display:flex;
    flex-flow:column;
    gap:10px;
    padding-left:20px;
}
.hero_card_list li {
    line-height:1.35;
    font-size:14px;
    @media screen and (max-width:575px) {font-size:12px;}
}
.hero_card_list li::marker {
    color:#10B981;
}
.hero_card_price {
    color:#4F46E5;
    font-weight:800;
    font-size:32px;
    text-align:right;
    @media screen and (max-width:1025px) {font-size:28px;}
}
.btn_invert.btn {
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    color:#4f46e5;
}
.hero_content .btn_invert.btn img {
    height:24px;
}
.hero_section h2 {
    text-align:center;
    font-size: 40px;
    font-weight: 800;
    margin:0 0 30px 0;
    color: #1F2937;
    @media screen and (max-width:1200px) {font-size:32px;}
    @media screen and (max-width:768px) {font-size:22px;}
    @media screen and (max-width:575px) {font-size:18px;}
}
.steps_work {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    @media screen and (max-width:1025px) {grid-template-columns: repeat(2, 1fr);}
    @media screen and (max-width:575px) {grid-template-columns: repeat(1, 1fr);}
}
.step_work {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
}
.step_work_number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
.step_work_icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}
.step_work_icon img {
    width:100%;
    padding:15px;
}
.step_work_title {
    font-size:20px;
    font-weight:700;
    @media screen and (max-width:1025px) {font-size:18px;}
    @media screen and (max-width:575px) {font-size:16px;}
}
.step_work p {
    color:#6B7280;
    font-size:14px;
    line-height:1.6;
    @media screen and (max-width:1025px) {font-size:12px;}
}