body {
margin: 0;
transition: background 0.4s ease, color 0.4s ease, font-family 0.4s ease;
background: #ffffff;
color: #000000;
font-family: Arial, sans-serif;
}

body.dark {
background: #121212;
color: #e0e0e0;
font-family: "Segoe UI", Verdana, sans-serif;
}

header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}

#theme-toggle {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
border: none;
border-radius: 6px;
cursor: pointer;
transition: 0.3s;
background: #ddd;
}

body.dark #theme-toggle {
background: #333;
color: #f5f5f5;
}

#theme-toggle svg {
width: 20px;
height: 20px;
}

main.blog-list.container {
padding: 20px;
transition: background 0.4s ease, color 0.4s ease, font-family 0.4s ease;
background: #f9f9f9;

max-width: 900px; 
margin: 0 auto;
box-sizing: border-box;
}

body.dark main.blog-list.container {
background: #1f1f1f;
}

article.post-card {
margin-bottom: 25px;
padding: 20px;
border-radius: 8px;
background: #ffffff;
transition: background 0.4s ease, color 0.4s ease;
}

body.dark article.post-card {
background: #2a2a2a; 
color: #ddd;
}

body.dark article.post-card a {
color: #66b3ff;
}

img.post-img {
max-width: 100%;
border-radius: 6px;
margin-bottom: 12px;
}

.scroll-fade {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 600px) {
body {
font-size: 18px; 
line-height: 1.6;
}

#theme-toggle {
font-size: 16px;
padding: 12px 20px;
}
}
.image-row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
padding: 20px;
max-width: 900px;
margin: 0 auto;
}

.image-row img {
width: 100%;
height: auto;
display: block;
}

@media (max-width: 768px) {
.image-row {
grid-template-columns: 1fr;
}
}
.img-card {
position: relative;
}

.img-toggle {
position: absolute;
bottom: 10px;
left: 10px;
padding: 6px 10px;
border: none;
border-radius: 6px;
background: rgba(0,0,0,0.6);
color: #fff;
cursor: pointer;
font-size: 14px;
}

@media (max-width: 768px) {
.hero-block {
flex-direction: column;
}
@media (max-width: 768px) {

  .hero-video {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
  }

  .hero-video video {
    width: 100vw !important;
    max-width: none !important;
    display: block;
    border-radius: 0 !important;
  }

}
.hero-image {
order: -1;
}
}
.hero-block {
max-width: 1100px;
margin: 40px auto;
padding: 60px 20px;

background: linear-gradient(135deg, #f3f3f3, #e9e9e9);
border-radius: 12px;
}

body.dark .hero-block {
background: linear-gradient(135deg, #1e1e1e, #151515);
}

.hero-text {
text-align: center;
margin-bottom: 30px;
}

.hero-video video {
width: 100%;
max-width: 900px;
display: block;
margin: 0 auto;
border-radius: 16px;
}

@media (max-width: 768px) {
.hero-block {
padding: 0;
border-radius: 0;
}

.hero-video {
width: 100vw;
margin-left: calc(50% - 50vw);
}

.hero-video video {
width: 100vw;
max-width: 100vw;
border-radius: 0;
display: block;
}
}

@media (max-width: 768px) {
.hero-block {
flex-direction: column;
text-align: center;
padding: 25px;
}

.hero-image {
flex: none;
width: 200px;
}
}
.cta-btn,
.card-btn,
.vogue-earn-btn,
.vogue-final-btn {
display: inline-block;
padding: 14px 26px;
border-radius: 12px;
font-size: 16px;
text-decoration: none;
border: none;
cursor: pointer;

background: linear-gradient(135deg, #000, #222);
color: #fff;

transition: all 0.25s ease;
box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.cta-btn:hover,
.card-btn:hover,
.vogue-earn-btn:hover,
.vogue-final-btn:hover {
box-shadow: 0 10px 25px rgba(0,0,0,0.25);
background: linear-gradient(135deg, #111, #333);
}

.cta-btn:active,
.card-btn:active,
.vogue-earn-btn:active,
.vogue-final-btn:active {
transform: translateY(0);
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* тёмная тема */
body.dark .cta-btn,
body.dark .card-btn,
body.dark .vogue-earn-btn,
body.dark .vogue-final-btn {
background: linear-gradient(135deg, #fff, #ddd);
color: #000;
box-shadow: 0 6px 18px rgba(255,255,255,0.1);
}

body.dark .cta-btn:hover,
body.dark .card-btn:hover,
body.dark .vogue-earn-btn:hover,
body.dark .vogue-final-btn:hover {
background: linear-gradient(135deg, #f5f5f5, #ccc);
box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.steps-block {
max-width: 1000px;
margin: 60px auto;
padding: 20px;
text-align: center;
}

.steps-block h2 {
font-size: 28px;
margin-bottom: 30px;
}

.steps {
display: flex;
justify-content: space-between;
gap: 20px;
}

.step {
flex: 1;
background: #f3f3f3;
padding: 20px;
border-radius: 10px;
}

body.dark .step {
background: #1e1e1e;
}

.step span {
display: inline-block;
font-size: 22px;
font-weight: bold;
margin-bottom: 10px;
}

@media (max-width: 768px) {
.steps {
flex-direction: column;
}
}

.hero-block-inner {
max-width: 1200px;
margin: 0 auto;

display: flex;
align-items: center;
justify-content: space-between;
gap: 60px;
}

.hero-text {
  text-align: center;
  margin-bottom: 30px;
}

.hero-text h2 {
font-size: 34px;
margin-bottom: 15px;
padding:20px;
}

.hero-text p {
opacity: 0.85;
padding:10px;
}

.hero-image {
flex: 0 0 300px;
position: relative;
}

.hero-image img {
width: 100%;
border-radius: 0;
object-fit: cover;

box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image::after {
content: "";
position: absolute;
inset: -10px;
border-radius: 50%;
background: rgba(0,0,0,0.05);
z-index: -1;
}

body.dark .hero-image::after {
background: rgba(255,255,255,0.05);
}

.hero-image img:hover {
transform: scale(1.05);
transition: 0.3s ease;
}

.hero-image img {
transition: 0.3s ease;
}

.hero-image img:hover {
transform: scale(1.05);
}

@media (max-width: 768px) {
.hero-block {
padding: 50px 20px;
}

.hero-block-inner {
flex-direction: column;
text-align: center;
gap: 30px;
}

.hero-image {
width: 180px;
}

}

.pricing-block {
max-width: 1100px;
margin: 60px auto;
padding: 20px;
text-align: center;
}

.pricing-block h2 {
font-size: 28px;
margin-bottom: 40px;
}

.pricing-cards {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.card {
flex: 1;
min-width: 280px;
max-width: 320px;
background: #f3f3f3;
padding: 25px;
border-radius: 12px;
position: relative;
transition: 0.3s;
}

body.dark .card {
background: #1e1e1e;
}

.card:hover {
transform: translateY(-5px);
}

.price {
font-size: 26px;
font-weight: bold;
margin: 10px 0 20px;
}

.card ul {
list-style: none;
padding: 0;
text-align: left;
margin-bottom: 20px;
}

.card ul li {
margin-bottom: 8px;
font-size: 15px;
}

.popular {
border: 2px solid #000;
}

body.dark .popular {
border: 2px solid #fff;
}

.badge {
position: absolute;
top: -10px;
left: 50%;
transform: translateX(-50%);
background: #000;
color: #fff;
padding: 5px 12px;
font-size: 12px;
border-radius: 20px;
}

.benefits-items {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
width: 100%;
}

.benefits-block {
max-width: 900px;
margin: 60px auto;
padding: 20px;
}

.benefits-block h2 {
font-size: 28px;
margin-bottom: 30px;
text-align: center 
}

.benefit-item {
position: relative;
padding: 24px 20px;
border-radius: 14px;
background: rgba(0,0,0,0.04);
transition: all 0.25s ease;
min-height: 90px;

display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

/* убираем растягивание */
.benefit-item:last-child {
background: linear-gradient(135deg, #000, #1c1c1c);
color: #fff;
}

/* ховер */
.benefit-item:hover {
transform: translateY(-4px);
background: rgba(0,0,0,0.07);
}

.benefit-item:last-child:hover {
background: linear-gradient(135deg, #111, #2a2a2a);
}

/* текст */
.benefit-item p {
margin: 0;
font-size: 15.5px;
line-height: 1.5;
}

/* тёмная тема */
body.dark .benefit-item {
background: rgba(255,255,255,0.05);
}

body.dark .benefit-item:hover {
background: rgba(255,255,255,0.08);
}

body.dark .benefit-item:last-child {
background: linear-gradient(135deg, #fff, #dcdcdc);
color: #000;
}

/* адаптив */
@media (max-width: 900px) {
.benefits-items {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 600px) {
.benefits-items {
grid-template-columns: 1fr;
}
}


body.dark .badge {
background: #fff;
color: #000;
}

@media (max-width: 768px) {
.pricing-cards {
flex-direction: column;
align-items: center;
}
}

.vogue-proof-block {
max-width: 1000px;
margin: 60px auto;
padding: 20px;
text-align: center;
}

.vogue-proof-block h2 {
font-size: 28px;
margin-bottom: 30px;
text-align: center 
}

.vogue-proof-stats {
display: flex;
justify-content: space-between;
gap: 20px;
margin: 30px 0;
}

.vogue-proof-item {
flex: 1;
background: #f3f3f3;
padding: 20px;
border-radius: 10px;
}

body.dark .vogue-proof-item {
background: #1e1e1e;
}

.vogue-proof-item strong {
display: block;
font-size: 28px;
margin-bottom: 5px;
}

.vogue-proof-reviews {
display: flex;
gap: 20px;
margin-top: 30px;
flex-wrap: wrap;
}

.vogue-review {
flex: 1;
min-width: 260px;
background: #ffffff;
padding: 20px;
border-radius: 10px;
font-style: italic;
}

body.dark .vogue-review {
background: #2a2a2a;
}

.vogue-earn-block {
max-width: 900px;
margin: 60px auto;
padding: 30px;
text-align: center;
background: #f3f3f3;
border-radius: 12px;
}

.vogue-earn-block h2 {
font-size: 28px;
margin-bottom: 30px;
text-align: center 
}

body.dark .vogue-earn-block {
background: #1e1e1e;
}

.vogue-earn-sub {
margin: 10px 0 25px;
opacity: 0.8;
}

.vogue-earn-items {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 25px;
}

.vogue-earn-item {
background: #ffffff;
padding: 15px 20px;
border-radius: 8px;
}

body.dark .vogue-earn-item {
background: #2a2a2a;
}

.vogue-faq-block {
max-width: 900px;
margin: 60px auto;
padding: 20px;
}

.vogue-faq-block h2 {
font-size: 28px;
margin-bottom: 30px;
text-align: center 
}

.vogue-faq-item {
background: #f3f3f3;
padding: 20px;
border-radius: 10px;
margin-bottom: 15px;
}

body.dark .vogue-faq-item {
background: #1e1e1e;
}

.vogue-faq-item h3 {
margin-top: 0;
}

.vogue-final-block {
max-width: 900px;
margin: 60px auto;
padding: 40px 20px;
text-align: center;
}

.vogue-final-btn {
display: inline-block;
margin-top: 20px;
padding: 14px 26px;
color: #fff;
text-decoration: none;
border-radius: 10px;
font-size: 16px;
transition: 0.3s;
}

@media (max-width: 768px) {
.vogue-proof-stats {
flex-direction: column;
}

.vogue-proof-reviews {
flex-direction: column;
}

.vogue-earn-items {
flex-direction: column;
}
}

