/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #E53935;
    --primary-dark: #C62828;
    --secondary: #1976D2;
    --dark: #212121;
    --gray: #757575;
    --gray-light: #F5F5F5;
    --gray-medium: #E0E0E0;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --kaspi: #F14635;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn--outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--white {
    background: var(--white);
    color: var(--dark);
}

.btn--white:hover {
    background: var(--gray-light);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 18px;
}

.btn--xl {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: var(--radius);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo__text {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.logo__accent {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-weight: 500;
    color: var(--gray);
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--primary);
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__phone {
    font-weight: 600;
    font-size: 18px;
}

.burger {
    display: none;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.burger span,
.burger::before,
.burger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
}

.burger::before { top: 0; }
.burger span { top: 50%; transform: translateY(-50%); }
.burger::after { bottom: 0; }

/* Section Titles */
.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== HERO ==================== */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__urgency {
    display: inline-block;
    padding: 10px 20px;
    background: #FFF3E0;
    color: #E65100;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__highlight {
    color: var(--primary);
}

.hero__subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero__price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__price {
    flex: 1;
    min-width: 130px;
    text-align: center;
}

.hero__price-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 4px;
}

.hero__price-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
}

.hero__price-period {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    margin-top: 2px;
}

.hero__price-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-medium);
}

.hero__actions {
    margin-bottom: 32px;
}

.hero__actions-note {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray);
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.hero__trust-item svg {
    color: var(--whatsapp);
}

.hero__image {
    position: relative;
}

.hero__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.hero__image-badge-title {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.hero__image-badge-price {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.hero__image-badge-info {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

/* ==================== PROBLEMS ==================== */
.problems {
    padding: 100px 0;
    background: var(--white);
}

.problems__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    padding: 32px 24px;
    background: var(--gray-light);
    border-radius: var(--radius);
    text-align: center;
}

.problem-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card__text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.problems__solution {
    text-align: center;
    font-size: 20px;
    color: var(--dark);
}

.problems__solution strong {
    color: var(--primary);
}

/* ==================== HOW WE WORK ==================== */
.how-we-work {
    padding: 100px 0;
    background: var(--gray-light);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 32px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.step:last-child {
    border-bottom: none;
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
}

.step__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step__text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.step__detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.step__image img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* ==================== PORTFOLIO ==================== */
.portfolio {
    padding: 100px 0;
    background: var(--white);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio__item--large {
    grid-column: span 2;
}

.portfolio__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio__item:hover img {
    transform: scale(1.05);
}

.portfolio__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
}

.portfolio__item:hover .portfolio__overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio__price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.portfolio__details {
    display: flex;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.portfolio__desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.portfolio__cta {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.portfolio__cta p {
    margin-bottom: 16px;
    color: var(--gray);
}

/* ==================== PRICING ==================== */
.pricing {
    padding: 100px 0;
    background: var(--gray-light);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.pricing__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    box-shadow: var(--shadow);
}

.pricing__card--popular {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing__card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.pricing__card-header {
    margin-bottom: 24px;
}

.pricing__card-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing__card-desc {
    font-size: 14px;
    color: var(--gray);
}

.pricing__card-price {
    margin-bottom: 16px;
}

.pricing__card-price-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.pricing__card-price-note {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.pricing__card-monthly {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
}

.pricing__card-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing__card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 15px;
}

.pricing__card-features li:last-child {
    border-bottom: none;
}

.pricing__card .btn {
    width: 100%;
}

.pricing__note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius);
    max-width: 700px;
    margin: 0 auto;
}

.pricing__note-icon {
    font-size: 32px;
}

.pricing__note-text {
    font-size: 15px;
    line-height: 1.6;
}

/* ==================== WHY US ==================== */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.why-us__item {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.why-us__number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-us__label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-us__text {
    font-size: 14px;
    color: var(--gray);
}

.why-us__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-us__feature {
    padding: 32px;
    border: 2px solid var(--gray-medium);
    border-radius: var(--radius);
}

.why-us__feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.why-us__feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-us__feature-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* ==================== INSTALLMENT ==================== */
.installment {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--kaspi) 0%, #D32F2F 100%);
}

.installment__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: var(--white);
}

.installment__logo img {
    margin-bottom: 24px;
}

.installment__title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}

.installment__subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.installment__example {
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
}

.installment__example-title {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.installment__example-calc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.installment__example-item {
    text-align: center;
}

.installment__example-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.installment__example-value {
    font-size: 24px;
    font-weight: 700;
}

.installment__example-value--accent {
    font-size: 32px;
}

.installment__steps {
    display: flex;
    gap: 24px;
}

.installment__step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.installment__step-num {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.installment__image {
    text-align: center;
}

.installment__image img {
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ==================== REVIEWS ==================== */
.reviews {
    padding: 100px 0;
    background: var(--gray-light);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.review-card__header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.review-card__avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card__name {
    font-weight: 700;
    margin-bottom: 4px;
}

.review-card__location {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 4px;
}

.review-card__rating {
    color: #FFC107;
    font-size: 14px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
}

.review-card__kitchen {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-card__kitchen img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.review-card__kitchen span {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.reviews__more {
    text-align: center;
    margin-top: 48px;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.faq__item {
    padding: 24px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.faq__question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq__answer {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

.faq__more {
    text-align: center;
}

.faq__more p {
    margin-bottom: 16px;
    color: var(--gray);
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 100px 0;
    background: var(--dark);
}

.final-cta__inner {
    text-align: center;
    color: var(--white);
}

.final-cta__urgency {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    color: #FFB74D;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 24px;
}

.final-cta__title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.final-cta__text {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.final-cta__trust {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.final-cta__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    opacity: 0.8;
}

.final-cta__trust-item svg {
    color: var(--whatsapp);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 30px;
    background: #1A1A1A;
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__desc {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.6;
}

.footer__social {
    margin-top: 16px;
}

.footer__social a {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer__social a:hover {
    opacity: 1;
}

.footer__title {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__contact {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer__contact a {
    opacity: 0.9;
}

.footer__contact span {
    opacity: 0.7;
}

.footer__payment {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__payment span {
    font-size: 14px;
    opacity: 0.7;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.5;
}

/* ==================== FIXED BUTTONS ==================== */
.fixed-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.2s;
}

.fixed-btn:hover {
    transform: scale(1.1);
}

.fixed-btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.fixed-btn--phone {
    background: var(--primary);
    color: var(--white);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .nav { display: none; }
    .burger { display: block; }
    .header__phone { display: none; }
    
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero__title { font-size: 40px; }
    .hero__image { display: none; }
    .hero__actions { display: flex; flex-direction: column; align-items: center; }
    .hero__trust { justify-content: center; }
    .hero__price-block { justify-content: center; flex-wrap: wrap; }
    
    .problems__grid { grid-template-columns: repeat(2, 1fr); }
    
    .step { grid-template-columns: 60px 1fr; }
    .step__image { display: none; }
    
    .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio__item--large { grid-column: span 1; }
    
    .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing__card--popular { transform: none; }
    
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__features { grid-template-columns: 1fr; }
    
    .installment__inner { grid-template-columns: 1fr; text-align: center; }
    .installment__image { display: none; }
    .installment__steps { justify-content: center; flex-wrap: wrap; }
    
    .reviews__grid { grid-template-columns: 1fr; }
    
    .faq__grid { grid-template-columns: 1fr; }
    
    .final-cta__title { font-size: 36px; }
    .final-cta__actions { flex-direction: column; align-items: center; }
    .final-cta__trust { flex-wrap: wrap; justify-content: center; }
    
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
    
    .materials__list { flex-wrap: wrap; justify-content: center; }
    .pricing__mini { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 640px) {
    .section-title { font-size: 32px; }
    .section-subtitle { font-size: 16px; }
    
    .hero { padding: 90px 0 40px; min-height: auto; }
    .hero__title { font-size: 32px; }
    .hero__subtitle { font-size: 16px; }
    .hero__price-block { flex-direction: column; gap: 16px; padding: 20px; }
    .hero__price-divider { width: 100%; height: 1px; }
    .hero__trust { flex-direction: column; gap: 12px; }
    
    .materials__inner { flex-direction: column; text-align: center; gap: 16px; }
    .materials__list { flex-direction: column; gap: 8px; }
    
    .problems__grid { grid-template-columns: 1fr; }
    
    .step { grid-template-columns: 1fr; }
    .step__number { margin-bottom: 16px; }
    
    .portfolio__grid { grid-template-columns: 1fr; }
    
    .why-us__grid { grid-template-columns: 1fr; }
    
    .installment__title { font-size: 32px; }
    .installment__example-calc { grid-template-columns: 1fr; gap: 12px; }
    .installment__steps { flex-direction: column; align-items: center; }
    
    .review-card__kitchen { display: none; }
    
    .final-cta__title { font-size: 28px; }
    .final-cta__text { font-size: 16px; }
    .final-cta__trust { flex-direction: column; gap: 12px; }
    
    .footer__grid { grid-template-columns: 1fr; }
    
    .fixed-buttons { bottom: 16px; right: 16px; }
    .fixed-btn { width: 52px; height: 52px; }
}

/* ==================== MATERIALS ==================== */
.materials {
    padding: 16px 0;
    background: var(--dark);
    color: var(--white);
}

.materials__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    flex-wrap: wrap;
}

.materials__inner > span {
    opacity: 0.7;
}

.materials__list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.materials__item {
    padding: 5px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* ==================== PRICING MINI ==================== */
.pricing__mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    border: 2px dashed var(--primary);
}

.pricing__mini-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #FFF3E0;
    color: #E65100;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 8px;
}

.pricing__mini-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing__mini-desc {
    font-size: 14px;
    color: var(--gray);
}

.pricing__mini-price-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.pricing__mini-price-note {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

/* ==================== PRICING CARD METER ==================== */
.pricing__card-meter {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gray-light);
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}
