@charset "UTF-8"; :root {
    --blue-800: #1e3a8a;
    --blue-900: #0f172a;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-50: #eff6ff;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-500: #22c55e;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#page {
    margin-top:20px;
}
.contact-info {
    text-align: right;
}

.phone-number {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.875rem;
}

.working-hours {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.call-button {
    background-color: var(--orange-500);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.call-button:hover {
    background-color: var(--orange-600);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold!important;
    margin: 0 !important;
    padding: 0!important;
}

.hero span {
    font-size: 2.0rem;
    padding: 0;
    margin: 0;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: normal;
}

/* Section Styles */
.section {
    padding: 1rem 0;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-title h2 {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-title h3 {
    margin-bottom: 1rem;
}

.section-title p {
    color: #000000;
    font-size: 1.2rem;
    line-height: normal;
}

/* Delivery Options */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.delivery-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.delivery-card b {
    display: block;
    background-color: var(--blue-800);
    color: white;
    padding: 4px;
    width: 50%;
    margin: 10px auto 10px;
    line-height: 1.8rem;
}

.delivery-card:hover {
    box-shadow: var(--shadow-lg);
}

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.delivery-icon img {
    width: 100%
}

.delivery-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.delivery-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: normal;
}

.delivery-details {
    background-color: var(--blue-50);
    color: var(--blue-800);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

/* Regions Section */
.regions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: center;
}

.regions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.region-item {
    display: flex;
    align-items: flex-start;
}

.region-icon {
    color: var(--green-500);
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.region-note {
    background-color: var(--blue-50);
    border-left: 4px solid var(--blue-600);
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-top: 2rem;
    font-weight: 500;
}

.region-note a {
    color: var(--blue-700);
    text-decoration: none;
    transition: var(--transition);
}

.region-note a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background-color: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 1rem;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.map-icon {
    background-color: #dbeafe;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

/* Steps Section */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
}

.step-number {
    background-color: var(--blue-800);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.step-item p {
    color: var(--gray-600);
    max-width: 250px;
}

.step-divider {
    display: none;
    width: 100%;
    height: 1px;
    background-color: var(--blue-200);
    margin: 1.5rem 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--gray-50);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.125rem;
    color: var(--gray-800);
    list-style: none;
    cursor: pointer;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-toggle {
    color: var(--blue-600);
    font-size: 1.5rem;
    margin-left: 0.5rem;
    font-weight: bold;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--gray-600);
    padding-right: 1.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.contact-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-section p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background-color: #009cde;
    background-image: radial-gradient(circle farthest-side at center bottom,#009cde,#003087 125%);
    border-radius: 1rem;
    padding: 1.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.consultation-button {
    background-color: var(--orange-500);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: bold;
    margin-top: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.consultation-button:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    background-color: var(--blue-800);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.footer-logo-text {
    margin-left: 0.75rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #60a5fa;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.footer-column h3 {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.footer-links a:hover {
    color: white;
}

.footer-links a.active {
    color: #60a5fa;
    font-weight: 500;
}

.contact-details li {
    display: flex;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-icon-small {
    margin-right: 0.75rem;
    min-width: 1.5rem;
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .header-content {
        padding: 1.25rem 0;
    }

    nav ul {
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .step-divider {
        display: block;
    }

    .steps-grid {
        flex-direction: row;
        align-items: center;
    }

    .step-item {
        align-items: flex-start;
        text-align: left;
    }

    .step-item p {
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .delivery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .regions-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Карта */
.regions-container {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.regions-content {
    flex: 1;
    min-width: 300px;
    width: 100%;
}

/* Стили для списка регионов */
.regions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 5px;
    margin-bottom: 20px;
}

.region-item {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    border: 1px solid transparent;
    line-height: normal;
}

.region-item:hover {
    background-color: #f0f7ff;
    border-color: #007bff;
}

.region-item.active {
    background-color: #e6f0ff;
    border-color: #007bff;
    font-weight: bold;
    width: 100%;
    max-width: 100%;
    /* flex-direction: column; */
}

.region-icon {
    color: #28a745;
}

/* Контейнер карты */
.map-container {
    flex: 1;
    max-width: 400px;
    height: 450px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.region-item {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.region-item:hover {
    background: #f9f9f9;
}

.region-info {
    font-size: 0.9em;
    color: #555;
    margin-left: auto;
    /* Прижимает цену и км к правому краю */
}

.price-value {
    font-weight: bold;
    color: #d32f2f;
}

.distance-value {
    color: #777;
    font-style: italic;
}

@media (max-width: 768px) {
    .map-container {
        min-width: 100%;
        height: auto;
    }
}

/* Оплата */
.contact-info {
    text-align: right;
}

.contact-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 8px;
    color: #ff9800;
}

.page-title {
    text-align: center;
    margin: 0 0 20px;
    font-family: 'Roboto';
    color: #ffffff;
}

.page-title:after {
    /* content: ''; */
    /* position: absolute; */
    /* width: 120px; */
    /* height: 4px; */
    /* background-color: #ff9800; */
    /* bottom: 0; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
}

.page-inner {
    margin: 0;
    /* padding: 0; */
}

.payment-container {
    margin: 0 auto;
    width: 99%;
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    font-family: 'Roboto';
}

.payment-info {
    width: 50%;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.payment-info a {
    border: none;
}

.payment-info .pstroke {
    display: block;
    width: 100%;
    background-color: #2eb1a8;
    color: white;
    font-weight: 600;
    text-shadow: 1px 0 0 BLACK;
    padding: 8px;
    text-align: center;
}

.payment-methods {
    margin-top: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #2eb1a8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.1);
}

.payment-icon {
    font-size: 2.2rem;
    margin-right: 20px;
    color: #2eb1a8;
    width: 60px;
    text-align: center;
    text-shadow: 1px 0 0 BLACK;
}

.payment-details h3 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.payment-details p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.address-info {
    width: 50%;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.address-details {
    margin-top: 20px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.address-icon {
    font-size: 1.5rem;
    color: #2eb1a8;
    margin-right: 15px;
    min-width: 30px;
    text-shadow: 1px 0 2px #9E9E9E;
}

.address-text h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.address-text p {
    color: #666;
}

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

    .payment-info , .address-info {
        width: 100%;
    }
}

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

    .payment-info , .address-info {
        width: 100%;
    }
}

.map-container {
    /* стили для контейнера карты */
}

.map-placeholder {
    background: linear-gradient(to bottom right, #e0e0e0, #f5f5f5);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    text-align: center;
    padding: 0;
}

.map-placeholder i {
    font-size: 4rem;
    color: #2eb1a8;
    margin-bottom: 20px;
}

.qr-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.qr-code {
    margin: 20px auto;
    width: 200px;
    height: 200px;
    background: linear-gradient(to bottom right, #f5f5f5, #e0e0e0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.qr-code i {
    font-size: 5rem;
    color: #333;
    margin-bottom: 15px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.step {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    background-color: #2eb1a8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 8px;
}

.footer-logo span {
    /* color: #ff9800; */
}

.copyright {
    font-size: 0.9rem;
    color: #bbb;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #2eb1a8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    text-decoration: underline;
    transform: translateX(-5px);
}

.warning {
    color: #d32f2f;
    font-weight: 500;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2eb1a8;
    text-shadow: 1px 0 0 #9E9E9E;
}

/* Общие настройки секции */
.services-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: normal;
    font-family: 'Roboto';
}

.services-intro p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #36d2c7;
}

.service-card.highlight {
    background: #fffdf9;
    border: 1px solid #36d2c7;
}

.service-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: normal;
}

.service-desc {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
    font-style: italic;
}

.service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #36d2c7;
    font-weight: bold;
}

.service-card ul li strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 2px;
}

.services-footer {
    background: #2c3e50;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
    border-radius: 12px;
    color: white;
    padding: 40px;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    line-height: normal;
}

.location-info {
    display: block;
    flex: 1;
    min-width: 100px;
    width: 100%;
    max-width: 50%;
}

.location-info strong {
    display: block;
    font-size: 1.3rem;
    color: #36d2c7;
    margin-bottom: 10px;
}

.footer-action {
    flex: 1;
    min-width: 100%;
    text-align: right;
}

.footer-action p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    text-align: center;
    background-color: #36d2c7;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.2s;
}

.cta-button:hover {
    background-color: #1d3884;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-action {
        text-align: left;
    }

    .services-intro h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 15px
    }

    .location-info {
        max-width: 100%
    }
}

.footer-payment-icon {
    display: flex;
    align-items: center;
}

.footer-payment-icon span {
    filter: none!important;
}

.footer-payment-icon img {
    width: 80px;
    margin: 0 10px;
    border-radius: 8px;
}

.bonolit-card {
    max-width: 1000px;
    width: 100%;
    background: #ffffff;
    border-radius: 42px;
    box-shadow: 0 30px 50px -20px rgba(28, 49, 68, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: transform 0.2s ease;
    margin: 20px auto;
}

/* шапка с брендом и весом */
.product-header {
    background: #2c3e4f;
    /* глубокий сине-серый, цвет "мокрого шифера" */
    padding: 1.8rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 4px solid #ffb347;
    /* акцент — тёплая полоса */
}

.title-group h2 {
    color: white;
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.title-group .subtitle {
    color: #bdd3e3;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.title-group .subtitle span {
    background: #3e5a6f;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    color: white;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: normal;
}

.weight-badge {
    background: #ffb347;
    color: #1e2b36;
    font-weight: 700;
    font-size: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    box-shadow: 0 6px 0 #b46f1b;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.1s linear;
}

.weight-badge small {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* мягкий фон для таблицы */
.spec-container {
    padding: 2.2rem 2.5rem 2.5rem 2.5rem;
    background: #fafcff;
}

/* каждая строка — как отдельный элемент */
.spec-row {
    display: flex;
    border-bottom: 1px solid #dce5ec;
    padding: 0.9rem 0.5rem;
    transition: background 0.15s;
    border-radius: 12px;
}

.spec-row:hover {
    background: #f2f7fd;
    border-bottom-color: transparent;
    box-shadow: 0 4px 10px -6px #a0b8cf;
}

.spec-title {
    flex: 0 0 40%;
    font-weight: 600;
    color: #1f3a4f;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* иконки-маркеры (минимализм) */
.spec-title::before {
    content: "▸";
    color: #ffb347;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 0;
}

.spec-value {
    flex: 0 0 60%;
    color: #2b4b65;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-right: 0.5rem;
}

.spec-value strong {
    font-weight: 700;
    color: #1f3a4f;
    background: #eef4fa;
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    margin-right: 8px;
    font-size: 0.95rem;
}

/* специальный стиль для ячеек с процентами / МПа */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    background: white;
    border-radius: 40px;
    padding: 0.25rem 1rem;
    font-weight: 500;
    border: 1px solid #cbdae7;
    color: #1f3a4f;
    margin: 3px;
}

/* нижняя часть: дополнительный блок про упаковку */
.package-footnote {
    margin-top: 2rem;
    background: #e2eefc;
    border-radius: 32px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    color: #163342;
    border: 1px solid #c9ddec;
}

.package-footnote p {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.package-footnote .icon {
    font-size: 2rem;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.1));
}

.highlight-name {
    background: #ffb347;
    color: #1e2b36;
    padding: 0.5rem 1.4rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    border: none;
    white-space: nowrap;
}

/* адаптивность */
@media (max-width: 650px) {
    .title-group h2 {
        font-size: 1.35rem;
        letter-spacing: normal;
        line-height: normal;
    }

    .product-header {
        padding: 1.5rem;
        flex-direction: column;
    }

    .title-group .subtitle {
        flex-direction: column;
    }

    .title-group h1 {
        font-size: 1.8rem;
    }

    .weight-badge {
        font-size: 1.6rem;
        padding: 0.4rem 1.2rem;
    }

    .spec-container {
        padding: 4px;
    }

    .spec-row {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }

    .spec-title {
        flex: auto;
        margin-bottom: 0.4rem;
    }

    .spec-value {
        flex: auto;
        padding-left: 1.8rem;
    }

    .package-footnote {
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .package-footnote p {
        flex-direction: column;
        font-size: 1rem;
        gap: 5px;
        padding: 8px;
    }

    .highlight-name {
        display: none
    }
}

@media (max-width: 400px) {
    .badge-list {
        flex-direction: column;
        gap: 4px;
    }
}

.shop-cat-desc h3 {
    font-family: 'Roboto';
    display: flex;
    min-height: 45px;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 25px 0 12px 0;
    color: white;
    width: 100%;
    background: #016ead;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.shop-cat-desc h3:first-of-type {
    margin: 0;
}

.shop-cat-desc p {
    margin: 0 0 20px 0;
    font-size: 1.05rem;
    color: black;
    text-align: left;
}

.shop-cat-desc ul {
    margin: 10px 0 25px 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
    width: 100%;
}

.shop-cat-desc li {
    position: relative;
    font-size: 1.05rem;
    color: black;
    text-align: left;
    width: 100%;
}

.shop-cat-desc li::before {
    content: "•";
    color: #2b5e3b;
    font-size: 1.8rem;
    position: absolute;
    left: 4px;
    top: -8px;
    display: none;
}

.shop-cat-desc strong {
    color: #235b34;
}
.button-all {
    width:100%;
    clear: both;
}
.button-all a, .shop-main-features>div>a:hover {
    background-color: #009cde;
    background-image: radial-gradient(circle farthest-side at center bottom,#009cde,#003087 125%);
}
/* Блок с мягкими окнами — без body, только компонент */
.soft-windows-card {
  max-width: 960px;
  margin: 2rem auto;
  padding: 2rem 2rem 2rem 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  border-radius: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.02);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.5;
  color: #1a2c3e;
  transition: all 0.2s ease;
}

.soft-windows-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #1f5e3a, #2b8c5e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
  border-left: 5px solid #2b8c5e;
  padding-left: 1rem;
}

.soft-windows-text {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #2c3e44;
}

.soft-windows-text strong {
  color: #1e6a46;
  font-weight: 600;
}

#product-main-description .highlight {
  background: #eef7f0;
  padding: 0.8rem 1.2rem;
  border-radius: 1.2rem;
  border-left: 4px solid #2b8c5e;
  margin: 1.5rem 0;
}

.soft-windows-features {
  background: #ffffffd9;
  border-radius: 1.5rem;
  padding: 0.2rem 1rem 0.8rem 1rem;
  margin: 1.8rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2eddf;
}

.features-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1rem 0 0.6rem 0;
  color: #1f5e3a;
}

.features-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 0.8rem 0 1.2rem 0;
}

.features-list li {
  flex: 1 1 260px;
  font-size: 0.98rem;
  padding: 0.3rem 0;
  color: #1e3a2f;
  border-bottom: 1px dashed #cde3d4;
}

.soft-windows-call {
  background: #eaf6f0;
  text-align: center;
  padding: 1rem 1.2rem;
  border-radius: 3rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a4e38;
  margin-top: 2rem;
  border: 1px solid #cde0d4;
  backdrop-filter: blur(2px);
}

/* Адаптивность для маленьких экранов */
@media (max-width: 640px) {
  .soft-windows-card {
    margin: 1rem;
    padding: 1.5rem;
  }
  .soft-windows-title {
    font-size: 1.5rem;
  }
  .features-list li {
    flex: 1 1 100%;
  }
  .soft-windows-call {
    font-size: 1rem;
  }
}
/* Блок: гибкие окна для террасы (без body) */
.terrace-windows-card {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem 2rem 2rem 2rem;
  background: #ffffff;
  background: linear-gradient(135deg, #fffdf7 0%, #f8f6f0 100%);
  border-radius: 2rem;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #4a3e2c;
  border: 1px solid #e8e0ce;
}

.terrace-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #b45f2b;
  letter-spacing: -0.3px;
  border-left: 5px solid #d9943b;
  padding-left: 1rem;
}

.terrace-text {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #4a412e;
}

.terrace-text strong {
  color: #c26e2a;
  font-weight: 600;
}

.terrace-quote {
  background: #fef3e4;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  margin: 1.6rem 0;
  font-size: 1.05rem;
  border-left: 6px solid #d9943b;
  color: #5a4a30;
}

.terrace-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.8rem 0 1rem 0;
  color: #b85f1e;
}

.terrace-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.8rem 0;
}

.terrace-list li {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0e3d0;
  font-size: 0.98rem;
  color: #4a3e2a;
}

.terrace-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 1.8rem;
  justify-content: center;
}

.terrace-grid-item {
  flex: 1;
  min-width: 180px;
  background: #fffcf5;
  padding: 1.2rem 1rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid #f0e2cf;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.terrace-grid-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #e2c8a7;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.terrace-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.6rem;
}

.terrace-grid-title {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
  color: #c26e2a;
}

.terrace-grid-desc {
  font-size: 0.9rem;
  color: #6a5d44;
  line-height: 1.4;
}

/* Блок сравнения "было / стало" */
.terrace-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.compare-left, .compare-right {
  flex: 1;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.compare-left {
  border-left: 4px solid #bc8f6b;
  background: #fefaf5;
}

.compare-right {
  border-left: 4px solid #7cb342;
  background: #f6faf2;
}

.compare-title {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.8rem;
}

.compare-left ul, .compare-right ul {
  margin: 0;
  padding-left: 1.2rem;
}

.compare-left li, .compare-right li {
  margin: 0.5rem 0;
  color: #4e4432;
}

.terrace-call {
  background: #f9efdf;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: #b45f2b;
  border: 1px solid #ebd9bf;
  font-weight: 500;
}

/* Адаптивность */
@media (max-width: 700px) {
  .terrace-windows-card {
    margin: 1rem;
    padding: 1.3rem;
  }
  .terrace-title {
    font-size: 1.6rem;
  }
  .terrace-subtitle {
    font-size: 1.3rem;
  }
  .terrace-feature-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .terrace-grid-item {
    min-width: auto;
  }
  .terrace-list li {
    flex: 1 1 100%;
  }
  .terrace-compare {
    flex-direction: column;
  }
}
/* Блок: мягкие окна для дачи (без body) */
.country-soft-windows {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem 2rem 2rem 2rem;
  background: #fefef7;
  background-image: radial-gradient(circle at 10% 20%, rgba(210, 230, 190, 0.15) 2%, transparent 2.5%);
  background-size: 28px 28px;
  border-radius: 2rem;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #2d3e2b;
  border: 1px solid #e2e7d6;
}

.country-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #2b5e2b;
  letter-spacing: -0.3px;
  border-bottom: 3px solid #bcd19b;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.country-text {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #2c4229;
}

.country-text strong {
  color: #3f7840;
  font-weight: 600;
}

.country-quote {
  background: #ebf3e2;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  margin: 1.6rem 0;
  font-size: 1.05rem;
  border-left: 6px solid #7aa55a;
  color: #2a4b24;
}

.country-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.8rem 0 1rem 0;
  color: #356d31;
}

.country-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.8rem 0;
}

.country-list li {
  flex: 1 1 280px;
  background: white;
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  border: 1px solid #dde8cf;
  font-size: 0.98rem;
  color: #2c4a26;
}

.country-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 1.8rem;
  justify-content: center;
}

.grid-item {
  flex: 1;
  min-width: 180px;
  background: #ffffffdb;
  backdrop-filter: blur(2px);
  padding: 1.2rem 1rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid #dae8cd;
  transition: transform 0.2s ease;
}

.grid-item:hover {
  transform: translateY(-4px);
  background: white;
  border-color: #b1cf92;
}

.grid-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.6rem;
}

.grid-title {
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.4rem;
  color: #3b6e36;
}

.grid-desc {
  font-size: 0.9rem;
  color: #4d5e46;
  line-height: 1.4;
}

.country-call {
  background: #e2f0d4;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: #2a5724;
  border: 1px solid #bdd6a5;
  font-weight: 500;
}

/* Адаптивность для телефонов и узких экранов */
@media (max-width: 700px) {
  .country-soft-windows {
    margin: 1rem;
    padding: 1.3rem;
  }
  .country-title {
    font-size: 1.6rem;
  }
  .country-subtitle {
    font-size: 1.3rem;
  }
  .country-feature-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .grid-item {
    min-width: auto;
  }
  .country-list li {
    flex: 1 1 100%;
  }
  .country-quote {
    padding: 0.8rem 1.2rem;
  }
}
/* Блок: гибкие окна для веранды (без body) */
.veranda-windows-card {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 2rem 2rem 2rem 2rem;
  background: #ffffff;
  background: linear-gradient(145deg, #faf8f3 0%, #fefcf7 100%);
  border-radius: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #3e3a2e;
  border: 1px solid #e6dfce;
}

.veranda-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #6b4c2c;
  letter-spacing: -0.3px;
  border-bottom: 3px solid #c6a56e;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.veranda-text {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #4a4536;
}

.veranda-text strong {
  color: #8b5e2e;
  font-weight: 600;
}

.veranda-quote {
  background: #f5efe3;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  margin: 1.6rem 0;
  font-size: 1.05rem;
  border-left: 6px solid #c6a56e;
  color: #5a4d36;
}

.veranda-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.8rem 0 1rem 0;
  color: #7a562e;
}

.veranda-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0 1.8rem 0;
}

.veranda-list li {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 0.7rem 1rem 0.7rem 1.2rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  border: 1px solid #ebe2d2;
  font-size: 0.98rem;
  color: #4a4233;
}

.veranda-feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 1.8rem;
  justify-content: center;
}

.veranda-grid-item {
  flex: 1;
  min-width: 180px;
  background: #fffef8;
  padding: 1.2rem 1rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid #e8dece;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.veranda-grid-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #d4c2a8;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.veranda-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.6rem;
}

.veranda-grid-title {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.4rem;
  color: #8b5e2e;
}

.veranda-grid-desc {
  font-size: 0.88rem;
  color: #6a5d48;
  line-height: 1.4;
}

/* Блок сравнения для веранды */
.veranda-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.veranda-compare-left, .veranda-compare-right {
  flex: 1;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.veranda-compare-left {
  border-left: 4px solid #b87c4a;
  background: #fefaf5;
}

.veranda-compare-right {
  border-left: 4px solid #7cb342;
  background: #f6faf2;
}

.veranda-compare-title {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.8rem;
}

.veranda-compare-left ul, .veranda-compare-right ul {
  margin: 0;
  padding-left: 1.2rem;
}

.veranda-compare-left li, .veranda-compare-right li {
  margin: 0.5rem 0;
  color: #524b3a;
}

.veranda-call {
  background: #f7f0e2;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  border-radius: 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: #8b5e2e;
  border: 1px solid #e3d5c0;
  font-weight: 500;
}

/* Адаптивность */
@media (max-width: 700px) {
  .veranda-windows-card {
    margin: 1rem;
    padding: 1.3rem;
  }
  .veranda-title {
    font-size: 1.6rem;
  }
  .veranda-subtitle {
    font-size: 1.3rem;
  }
  .veranda-feature-grid {
    flex-direction: column;
    gap: 1rem;
  }
  .veranda-grid-item {
    min-width: auto;
  }
  .veranda-list li {
    flex: 1 1 100%;
  }
  .veranda-compare {
    flex-direction: column;
  }
}
/* ============================================ */
/* ТОНИРОВАННАЯ ПЛЕНКА ПВХ 700 МКМ - СТИЛИ */
/* ============================================ */

.tinted-film-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.25);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.tinted-film-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.35);
}

/* Заголовки */
.tinted-film-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #f0c27b, #f4a460);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #f4a460;
    padding-left: 20px;
}

.tinted-film-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #f4a460;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(244, 164, 96, 0.3);
}

/* Текст */
.tinted-film-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #d0d0d0;
}

/* Цитата / выделенный блок */
.tinted-film-quote {
    background: linear-gradient(110deg, rgba(244, 164, 96, 0.15) 0%, rgba(240, 194, 123, 0.1) 100%);
    border-left: 5px solid #f4a460;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #f0c27b;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

/* Списки */
.tinted-film-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.tinted-film-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #d0d0d0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
}

.tinted-film-list li:hover {
    background: rgba(244, 164, 96, 0.15);
    transform: translateX(3px);
}

.tinted-film-list li::before {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

/* Индивидуальные иконки для каждого пункта (можно оставить эмодзи из HTML) */
/* Если хотите убрать эмодзи и сделать через ::before - раскомментируйте */
/*
.tinted-film-list li:nth-child(1)::before { content: "🛡️"; }
.tinted-film-list li:nth-child(2)::before { content: "📏"; }
.tinted-film-list li:nth-child(3)::before { content: "❄️"; }
.tinted-film-list li:nth-child(4)::before { content: "🌑"; }
.tinted-film-list li:nth-child(5)::before { content: "☀️"; }
.tinted-film-list li:nth-child(6)::before { content: "🌡️"; }
.tinted-film-list li:nth-child(7)::before { content: "👁️"; }
.tinted-film-list li:nth-child(8)::before { content: "🧼"; }
.tinted-film-list li:nth-child(9)::before { content: "🎨"; }
*/

/* Сетка преимуществ */
.tinted-film-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tinted-grid-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    border: 1px solid rgba(244, 164, 96, 0.15);
}

.tinted-grid-item:hover {
    transform: translateY(-5px);
    background: rgba(244, 164, 96, 0.1);
    border-color: rgba(244, 164, 96, 0.4);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.25);
}

.tinted-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.tinted-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #f4a460;
}

.tinted-grid-desc {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.4;
}

/* Блок сравнения (прозрачный vs тонированный) */
.tinted-film-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px 0;
}

.tinted-compare-left,
.tinted-compare-right {
    flex: 1;
    min-width: 240px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.tinted-compare-title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(244, 164, 96, 0.3);
}

.tinted-compare-left .tinted-compare-title {
    color: #e0e0e0;
}

.tinted-compare-right .tinted-compare-title {
    color: #f4a460;
}

.tinted-compare-left ul,
.tinted-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tinted-compare-left li,
.tinted-compare-right li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
}

.tinted-compare-left li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.tinted-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Финальный призыв (call) */
.tinted-film-call {
    background: linear-gradient(115deg, #f4a460 0%, #f0c27b 100%);
    color: #1a1a2e;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 700;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 768px) {
    .tinted-film-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .tinted-film-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .tinted-film-subtitle {
        font-size: 20px;
    }

    .tinted-film-list {
        grid-template-columns: 1fr;
    }

    .tinted-film-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tinted-film-compare {
        flex-direction: column;
    }

    .tinted-compare-left,
    .tinted-compare-right {
        min-width: auto;
    }

    .tinted-film-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tinted-film-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* ПОВОРОТНЫЙ ЗАМОК ДЛЯ ГИБКИХ ОКОН - СТИЛИ */
/* ============================================ */

.lock-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #e8e0e8 0%, #d4c8d4 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #2a1a3a;
    transition: all 0.3s ease;
}

.lock-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.lock-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #3a2a5a, #5a4a7a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #5a4a7a;
    padding-left: 20px;
}

.lock-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #3a2a5a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(58, 42, 90, 0.3);
}

/* Текст */
.lock-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #2a1a3a;
}

/* Цитата / выделенный блок */
.lock-quote {
    background: linear-gradient(110deg, rgba(58, 42, 90, 0.08) 0%, rgba(90, 74, 122, 0.05) 100%);
    border-left: 5px solid #5a4a7a;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #3a2a5a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Списки */
.lock-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.lock-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #2a1a3a;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.lock-list li:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Сетка преимуществ */
.lock-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.lock-grid-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(58, 42, 90, 0.1);
}

.lock-grid-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(58, 42, 90, 0.3);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
}

.lock-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.lock-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #3a2a5a;
}

.lock-grid-desc {
    font-size: 14px;
    color: #5a4a6a;
    line-height: 1.4;
}

/* Блок сравнения (молния vs поворотный замок) */
.lock-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px 0;
}

.lock-compare-left,
.lock-compare-right {
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.lock-compare-title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(58, 42, 90, 0.2);
}

.lock-compare-left .lock-compare-title {
    color: #6a4a2a;
}

.lock-compare-right .lock-compare-title {
    color: #2e7d32;
}

.lock-compare-left ul,
.lock-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lock-compare-left li,
.lock-compare-right li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
}

.lock-compare-left li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #6a4a2a;
}

.lock-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Схема установки */
.lock-scheme {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(58, 42, 90, 0.15);
}

.lock-scheme-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a2a5a;
    margin-bottom: 16px;
    text-align: center;
}

.lock-scheme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.lock-scheme-item {
    flex: 1;
    min-width: 180px;
    background: #f0ecf0;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #2a1a3a;
    text-align: center;
}

.lock-scheme-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #5a4a7a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Финальный призыв (call) */
.lock-call {
    background: linear-gradient(115deg, #5a4a7a 0%, #3a2a5a 100%);
    color: white;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Адаптивность */
@media (max-width: 768px) {
    .lock-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .lock-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .lock-subtitle {
        font-size: 20px;
    }

    .lock-list {
        grid-template-columns: 1fr;
    }

    .lock-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lock-compare {
        flex-direction: column;
    }

    .lock-compare-left,
    .lock-compare-right {
        min-width: auto;
    }

    .lock-scheme-content {
        flex-direction: column;
    }
    
    .lock-scheme-item {
        min-width: auto;
    }

    .lock-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .lock-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* КРЕПЛЕНИЕ СКОБА И РЕМЕНЬ - СТИЛИ */
/* ============================================ */

.strap-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #e0dcd0 0%, #ccc8b8 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #2a2a1a;
    transition: all 0.3s ease;
}

.strap-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.strap-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #4a4a2a, #6a6a4a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #6a6a4a;
    padding-left: 20px;
}

.strap-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #4a4a2a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(74, 74, 42, 0.3);
}

/* Текст */
.strap-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #2a2a1a;
}

/* Цитата / выделенный блок */
.strap-quote {
    background: linear-gradient(110deg, rgba(74, 74, 42, 0.08) 0%, rgba(106, 106, 74, 0.05) 100%);
    border-left: 5px solid #6a6a4a;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #4a4a2a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Списки */
.strap-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.strap-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #2a2a1a;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.strap-list li:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Сетка преимуществ */
.strap-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.strap-grid-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(74, 74, 42, 0.1);
}

.strap-grid-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(74, 74, 42, 0.3);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
}

.strap-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.strap-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #4a4a2a;
}

.strap-grid-desc {
    font-size: 14px;
    color: #5a5a4a;
    line-height: 1.4;
}

/* Блок сравнения (три типа крепления) */
.strap-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.strap-compare-left,
.strap-compare-center,
.strap-compare-right {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 20px 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.strap-compare-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(74, 74, 42, 0.2);
    text-align: center;
}

.strap-compare-left .strap-compare-title {
    color: #6a4a2a;
}

.strap-compare-center .strap-compare-title {
    color: #5a4a7a;
}

.strap-compare-right .strap-compare-title {
    color: #2e7d32;
}

.strap-compare-left ul,
.strap-compare-center ul,
.strap-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strap-compare-left li,
.strap-compare-center li,
.strap-compare-right li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 13px;
}

.strap-compare-left li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #6a4a2a;
}

.strap-compare-center li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #5a4a7a;
}

.strap-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Схема установки */
.strap-scheme {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(74, 74, 42, 0.15);
}

.strap-scheme-title {
    font-size: 18px;
    font-weight: 700;
    color: #4a4a2a;
    margin-bottom: 16px;
    text-align: center;
}

.strap-scheme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.strap-scheme-item {
    flex: 1;
    min-width: 180px;
    background: #e8e4d8;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #2a2a1a;
    text-align: center;
}

.strap-scheme-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #6a6a4a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Материалы комплекта */
.strap-materials {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(74, 74, 42, 0.15);
}

.strap-materials-title {
    font-size: 18px;
    font-weight: 700;
    color: #4a4a2a;
    margin-bottom: 16px;
    text-align: center;
}

.strap-materials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.strap-materials-item {
    flex: 1;
    min-width: 220px;
    background: #e8e4d8;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #2a2a1a;
    line-height: 1.45;
}

/* Финальный призыв (call) */
.strap-call {
    background: linear-gradient(115deg, #6a6a4a 0%, #4a4a2a 100%);
    color: white;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Адаптивность */
@media (max-width: 900px) {
    .strap-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .strap-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .strap-subtitle {
        font-size: 20px;
    }

    .strap-list {
        grid-template-columns: 1fr;
    }

    .strap-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .strap-compare {
        flex-direction: column;
    }

    .strap-compare-left,
    .strap-compare-center,
    .strap-compare-right {
        min-width: auto;
    }

    .strap-scheme-content {
        flex-direction: column;
    }
    
    .strap-scheme-item {
        min-width: auto;
    }

    .strap-materials-content {
        flex-direction: column;
    }
    
    .strap-materials-item {
        min-width: auto;
    }

    .strap-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .strap-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* КРЕПЛЕНИЕ ЛЮВЕРС ДЛЯ МЯГКИХ ОКОН - СТИЛИ */
/* ============================================ */

.grommet-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #d0d8e0 0%, #b8c4d0 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #1a2a3a;
    transition: all 0.3s ease;
}

.grommet-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.grommet-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #2a4a6a, #4a6a8a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #4a6a8a;
    padding-left: 20px;
}

.grommet-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #2a4a6a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(42, 74, 106, 0.3);
}

/* Текст */
.grommet-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #1a2a3a;
}

/* Цитата / выделенный блок */
.grommet-quote {
    background: linear-gradient(110deg, rgba(42, 74, 106, 0.08) 0%, rgba(74, 106, 138, 0.05) 100%);
    border-left: 5px solid #4a6a8a;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #2a4a6a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Списки */
.grommet-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.grommet-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #1a2a3a;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.grommet-list li:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Сетка преимуществ */
.grommet-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.grommet-grid-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(42, 74, 106, 0.1);
}

.grommet-grid-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(42, 74, 106, 0.3);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
}

.grommet-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.grommet-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #2a4a6a;
}

.grommet-grid-desc {
    font-size: 14px;
    color: #4a6a7a;
    line-height: 1.4;
}

/* Блок сравнения (три типа крепления) */
.grommet-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.grommet-compare-left,
.grommet-compare-center,
.grommet-compare-right {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 20px 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.grommet-compare-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(42, 74, 106, 0.2);
    text-align: center;
}

.grommet-compare-left .grommet-compare-title {
    color: #6a4a2a;
}

.grommet-compare-center .grommet-compare-title {
    color: #5a4a7a;
}

.grommet-compare-right .grommet-compare-title {
    color: #2e7d32;
}

.grommet-compare-left ul,
.grommet-compare-center ul,
.grommet-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grommet-compare-left li,
.grommet-compare-center li,
.grommet-compare-right li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 13px;
}

.grommet-compare-left li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #6a4a2a;
}

.grommet-compare-center li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #5a4a7a;
}

.grommet-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Схема установки */
.grommet-scheme {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(42, 74, 106, 0.15);
}

.grommet-scheme-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a4a6a;
    margin-bottom: 16px;
    text-align: center;
}

.grommet-scheme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.grommet-scheme-item {
    flex: 1;
    min-width: 180px;
    background: #d8e0e8;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2a3a;
    text-align: center;
}

.grommet-scheme-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #4a6a8a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Материалы люверсов */
.grommet-materials {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(42, 74, 106, 0.15);
}

.grommet-materials-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a4a6a;
    margin-bottom: 16px;
    text-align: center;
}

.grommet-materials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.grommet-materials-item {
    flex: 1;
    min-width: 200px;
    background: #d8e0e8;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #1a2a3a;
    line-height: 1.45;
}

/* Варианты крепежа */
.grommet-fasteners {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(42, 74, 106, 0.15);
}

.grommet-fasteners-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a4a6a;
    margin-bottom: 16px;
    text-align: center;
}

.grommet-fasteners-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.grommet-fasteners-item {
    flex: 1;
    min-width: 200px;
    background: #d8e0e8;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #1a2a3a;
    line-height: 1.45;
}

/* Финальный призыв (call) */
.grommet-call {
    background: linear-gradient(115deg, #4a6a8a 0%, #2a4a6a 100%);
    color: white;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Адаптивность */
@media (max-width: 900px) {
    .grommet-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .grommet-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .grommet-subtitle {
        font-size: 20px;
    }

    .grommet-list {
        grid-template-columns: 1fr;
    }

    .grommet-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .grommet-compare {
        flex-direction: column;
    }

    .grommet-compare-left,
    .grommet-compare-center,
    .grommet-compare-right {
        min-width: auto;
    }

    .grommet-scheme-content {
        flex-direction: column;
    }
    
    .grommet-scheme-item {
        min-width: auto;
    }

    .grommet-materials-content,
    .grommet-fasteners-content {
        flex-direction: column;
    }
    
    .grommet-materials-item,
    .grommet-fasteners-item {
        min-width: auto;
    }

    .grommet-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .grommet-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* КРЕПЛЕНИЕ КРЮЧОК И КОЛЕБАТЕЛЬНАЯ СКОБА - СТИЛИ */
/* ============================================ */

.hook-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #d8e0d0 0%, #c0ccb0 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #2a3a1a;
    transition: all 0.3s ease;
}

.hook-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.hook-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #3a5a2a, #5a7a4a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #5a7a4a;
    padding-left: 20px;
}

.hook-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #3a5a2a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(58, 90, 42, 0.3);
}

/* Текст */
.hook-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #2a3a1a;
}

/* Цитата / выделенный блок */
.hook-quote {
    background: linear-gradient(110deg, rgba(58, 90, 42, 0.08) 0%, rgba(90, 122, 74, 0.05) 100%);
    border-left: 5px solid #5a7a4a;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #3a5a2a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Списки */
.hook-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.hook-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #2a3a1a;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.hook-list li:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Сетка преимуществ */
.hook-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.hook-grid-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(58, 90, 42, 0.1);
}

.hook-grid-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(58, 90, 42, 0.3);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
}

.hook-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.hook-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #3a5a2a;
}

.hook-grid-desc {
    font-size: 14px;
    color: #5a7a4a;
    line-height: 1.4;
}

/* Блок сравнения (три типа крепления) */
.hook-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.hook-compare-left,
.hook-compare-center,
.hook-compare-right {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 20px 18px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.hook-compare-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(58, 90, 42, 0.2);
    text-align: center;
}

.hook-compare-left .hook-compare-title {
    color: #6a4a2a;
}

.hook-compare-center .hook-compare-title {
    color: #4a6a8a;
}

.hook-compare-right .hook-compare-title {
    color: #2e7d32;
}

.hook-compare-left ul,
.hook-compare-center ul,
.hook-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hook-compare-left li,
.hook-compare-center li,
.hook-compare-right li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 13px;
}

.hook-compare-left li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #6a4a2a;
}

.hook-compare-center li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #4a6a8a;
}

.hook-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Схема устройства скобы */
.hook-scheme {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(58, 90, 42, 0.15);
}

.hook-scheme-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a5a2a;
    margin-bottom: 16px;
    text-align: center;
}

.hook-scheme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.hook-scheme-item {
    flex: 1;
    min-width: 180px;
    background: #d8e4d0;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #2a3a1a;
    text-align: center;
}

.hook-scheme-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #5a7a4a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Схема установки крючков */
.hook-scheme-install {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(58, 90, 42, 0.15);
}

.hook-scheme-install-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a5a2a;
    margin-bottom: 16px;
    text-align: center;
}

.hook-scheme-install-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.hook-scheme-install-item {
    flex: 1;
    min-width: 180px;
    background: #d8e4d0;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #2a3a1a;
    text-align: center;
}

.hook-scheme-install-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #5a7a4a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Материалы */
.hook-materials {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(58, 90, 42, 0.15);
}

.hook-materials-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a5a2a;
    margin-bottom: 16px;
    text-align: center;
}

.hook-materials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hook-materials-item {
    flex: 1;
    min-width: 200px;
    background: #d8e4d0;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #2a3a1a;
    line-height: 1.45;
}

/* Финальный призыв (call) */
.hook-call {
    background: linear-gradient(115deg, #5a7a4a 0%, #3a5a2a 100%);
    color: white;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Адаптивность */
@media (max-width: 900px) {
    .hook-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .hook-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .hook-subtitle {
        font-size: 20px;
    }

    .hook-list {
        grid-template-columns: 1fr;
    }

    .hook-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hook-compare {
        flex-direction: column;
    }

    .hook-compare-left,
    .hook-compare-center,
    .hook-compare-right {
        min-width: auto;
    }

    .hook-scheme-content,
    .hook-scheme-install-content {
        flex-direction: column;
    }
    
    .hook-scheme-item,
    .hook-scheme-install-item {
        min-width: auto;
    }

    .hook-materials-content {
        flex-direction: column;
    }
    
    .hook-materials-item {
        min-width: auto;
    }

    .hook-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .hook-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* НАПРАВЛЯЮЩИЙ ПРОФИЛЬ 6 М - СТИЛИ */
/* ============================================ */

.profile-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #e0e0e8 0%, #c8c8d4 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #1a1a2a;
    transition: all 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.profile-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #3a3a5a, #5a5a7a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #5a5a7a;
    padding-left: 20px;
}

.profile-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #3a3a5a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(58, 58, 90, 0.3);
}

/* Текст */
.profile-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #1a1a2a;
}

/* Цитата / выделенный блок */
.profile-quote {
    background: linear-gradient(110deg, rgba(58, 58, 90, 0.08) 0%, rgba(90, 90, 122, 0.05) 100%);
    border-left: 5px solid #5a5a7a;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #3a3a5a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Списки */
.profile-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.profile-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #1a1a2a;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.profile-list li:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Сетка преимуществ */
.profile-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.profile-grid-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(58, 58, 90, 0.1);
}

.profile-grid-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(58, 58, 90, 0.3);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
}

.profile-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.profile-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #3a3a5a;
}

.profile-grid-desc {
    font-size: 14px;
    color: #5a5a7a;
    line-height: 1.4;
}

/* Блок расчёта */
.profile-calculation {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(58, 58, 90, 0.15);
}

.profile-calculation-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a5a;
    margin-bottom: 16px;
    text-align: center;
}

.profile-calculation-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.profile-calculation-item {
    background: #d8d8e4;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2a;
    text-align: center;
}

.profile-calculation-num {
    display: inline-block;
    background: #5a5a7a;
    color: white;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 10px;
}

/* Блок сравнения */
.profile-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px 0;
}

.profile-compare-left,
.profile-compare-right {
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.profile-compare-title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(58, 58, 90, 0.2);
}

.profile-compare-left .profile-compare-title {
    color: #c0392b;
}

.profile-compare-right .profile-compare-title {
    color: #2e7d32;
}

.profile-compare-left ul,
.profile-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-compare-left li,
.profile-compare-right li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
}

.profile-compare-left li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.profile-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Устройство профиля */
.profile-scheme {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(58, 58, 90, 0.15);
}

.profile-scheme-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a5a;
    margin-bottom: 16px;
    text-align: center;
}

.profile-scheme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.profile-scheme-item {
    flex: 1;
    min-width: 180px;
    background: #d8d8e4;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2a;
    text-align: center;
}

.profile-scheme-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #5a5a7a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Материалы */
.profile-materials {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(58, 58, 90, 0.15);
}

.profile-materials-title {
    font-size: 18px;
    font-weight: 700;
    color: #3a3a5a;
    margin-bottom: 16px;
    text-align: center;
}

.profile-materials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.profile-materials-item {
    flex: 1;
    min-width: 220px;
    background: #d8d8e4;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #1a1a2a;
    line-height: 1.45;
}

/* Финальный призыв (call) */
.profile-call {
    background: linear-gradient(115deg, #5a5a7a 0%, #3a3a5a 100%);
    color: white;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Адаптивность */
@media (max-width: 768px) {
    .profile-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .profile-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .profile-subtitle {
        font-size: 20px;
    }

    .profile-list {
        grid-template-columns: 1fr;
    }

    .profile-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .profile-calculation-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .profile-calculation-item {
        text-align: left;
    }

    .profile-compare {
        flex-direction: column;
    }

    .profile-compare-left,
    .profile-compare-right {
        min-width: auto;
    }

    .profile-scheme-content {
        flex-direction: column;
    }
    
    .profile-scheme-item {
        min-width: auto;
    }

    .profile-materials-content {
        flex-direction: column;
    }
    
    .profile-materials-item {
        min-width: auto;
    }

    .profile-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .profile-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* РОЛИКОВЫЙ МЕХАНИЗМ ШАГ 0,35 М - СТИЛИ */
/* ============================================ */

.roller-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #e0e8e0 0%, #c8d4c8 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #1a2a1a;
    transition: all 0.3s ease;
}

.roller-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.roller-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #2a5a3a, #4a7a5a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #4a7a5a;
    padding-left: 20px;
}

.roller-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #2a5a3a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(42, 90, 58, 0.3);
}

/* Текст */
.roller-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #1a2a1a;
}

/* Цитата / выделенный блок */
.roller-quote {
    background: linear-gradient(110deg, rgba(42, 90, 58, 0.08) 0%, rgba(74, 122, 90, 0.05) 100%);
    border-left: 5px solid #4a7a5a;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #2a5a3a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Списки */
.roller-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.roller-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #1a2a1a;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.roller-list li:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Сетка преимуществ */
.roller-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.roller-grid-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(42, 90, 58, 0.1);
}

.roller-grid-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(42, 90, 58, 0.3);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
}

.roller-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.roller-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #2a5a3a;
}

.roller-grid-desc {
    font-size: 14px;
    color: #4a7a5a;
    line-height: 1.4;
}

/* Блок расчёта */
.roller-calculation {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(42, 90, 58, 0.15);
}

.roller-calculation-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.roller-calculation-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.roller-calculation-item {
    background: #d8e4d8;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2a1a;
    text-align: center;
}

.roller-calculation-num {
    display: inline-block;
    background: #4a7a5a;
    color: white;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 10px;
}

/* Блок сравнения */
.roller-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px 0;
}

.roller-compare-left,
.roller-compare-right {
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.roller-compare-title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(42, 90, 58, 0.2);
}

.roller-compare-left .roller-compare-title {
    color: #c0392b;
}

.roller-compare-right .roller-compare-title {
    color: #2e7d32;
}

.roller-compare-left ul,
.roller-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roller-compare-left li,
.roller-compare-right li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
}

.roller-compare-left li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.roller-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Устройство механизма */
.roller-scheme {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(42, 90, 58, 0.15);
}

.roller-scheme-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.roller-scheme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.roller-scheme-item {
    flex: 1;
    min-width: 180px;
    background: #d8e4d8;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2a1a;
    text-align: center;
}

.roller-scheme-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #4a7a5a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Материалы */
.roller-materials {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(42, 90, 58, 0.15);
}

.roller-materials-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.roller-materials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.roller-materials-item {
    flex: 1;
    min-width: 220px;
    background: #d8e4d8;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #1a2a1a;
    line-height: 1.45;
}

/* Схема монтажа */
.roller-scheme-install {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(42, 90, 58, 0.15);
}

.roller-scheme-install-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.roller-scheme-install-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.roller-scheme-install-item {
    flex: 1;
    min-width: 180px;
    background: #d8e4d8;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #1a2a1a;
    text-align: center;
}

.roller-scheme-install-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #4a7a5a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Финальный призыв (call) */
.roller-call {
    background: linear-gradient(115deg, #4a7a5a 0%, #2a5a3a 100%);
    color: white;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Адаптивность */
@media (max-width: 768px) {
    .roller-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .roller-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .roller-subtitle {
        font-size: 20px;
    }

    .roller-list {
        grid-template-columns: 1fr;
    }

    .roller-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .roller-calculation-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .roller-calculation-item {
        text-align: left;
    }

    .roller-compare {
        flex-direction: column;
    }

    .roller-compare-left,
    .roller-compare-right {
        min-width: auto;
    }

    .roller-scheme-content,
    .roller-scheme-install-content {
        flex-direction: column;
    }
    
    .roller-scheme-item,
    .roller-scheme-install-item {
        min-width: auto;
    }

    .roller-materials-content {
        flex-direction: column;
    }
    
    .roller-materials-item {
        min-width: auto;
    }

    .roller-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .roller-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ============================================ */
/* ПОДВЯЗОЧНЫЕ РЕМНИ ШАГ 0,50 М - СТИЛИ */
/* ============================================ */

.tie-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 35px;
    background: linear-gradient(135deg, #f0e8e0 0%, #e0d4c8 100%);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: #3a2a1a;
    transition: all 0.3s ease;
}

.tie-card:hover {
    box-shadow: 0 25px 40px -14px rgba(0, 0, 0, 0.15);
}

/* Заголовки */
.tie-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    background: linear-gradient(120deg, #8a5a3a, #aa7a5a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    border-left: 5px solid #aa7a5a;
    padding-left: 20px;
}

.tie-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 18px 0;
    color: #8a5a3a;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(138, 90, 58, 0.3);
}

/* Текст */
.tie-text {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 20px;
    color: #3a2a1a;
}

/* Цитата / выделенный блок */
.tie-quote {
    background: linear-gradient(110deg, rgba(138, 90, 58, 0.08) 0%, rgba(170, 122, 90, 0.05) 100%);
    border-left: 5px solid #aa7a5a;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 500;
    color: #8a5a3a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Списки */
.tie-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 20px;
    margin: 20px 0 25px;
}

.tie-list li {
    padding: 8px 0 8px 32px;
    position: relative;
    font-size: 15px;
    color: #3a2a1a;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 8px 15px 8px 38px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.tie-list li:hover {
    background: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Сетка преимуществ */
.tie-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tie-grid-item {
    background: rgba(255, 255, 255, 0.85);
    padding: 18px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid rgba(138, 90, 58, 0.1);
}

.tie-grid-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(138, 90, 58, 0.3);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
}

.tie-icon {
    font-size: 38px;
    display: inline-block;
    margin-bottom: 12px;
}

.tie-grid-title {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: #8a5a3a;
}

.tie-grid-desc {
    font-size: 14px;
    color: #aa8a6a;
    line-height: 1.4;
}

/* Блок расчёта */
.tie-calculation {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(138, 90, 58, 0.15);
}

.tie-calculation-title {
    font-size: 18px;
    font-weight: 700;
    color: #8a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.tie-calculation-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tie-calculation-item {
    background: #e8dcd0;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    color: #3a2a1a;
    text-align: center;
}

.tie-calculation-num {
    display: inline-block;
    background: #aa7a5a;
    color: white;
    padding: 2px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    margin-right: 10px;
}

/* Блок сравнения */
.tie-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 30px 0;
}

.tie-compare-left,
.tie-compare-right {
    flex: 1;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.tie-compare-title {
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(138, 90, 58, 0.2);
}

.tie-compare-left .tie-compare-title {
    color: #c0392b;
}

.tie-compare-right .tie-compare-title {
    color: #2e7d32;
}

.tie-compare-left ul,
.tie-compare-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tie-compare-left li,
.tie-compare-right li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
}

.tie-compare-left li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.tie-compare-right li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Устройство ремня */
.tie-scheme {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(138, 90, 58, 0.15);
}

.tie-scheme-title {
    font-size: 18px;
    font-weight: 700;
    color: #8a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.tie-scheme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.tie-scheme-item {
    flex: 1;
    min-width: 180px;
    background: #e8dcd0;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #3a2a1a;
    text-align: center;
}

.tie-scheme-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #aa7a5a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Типы ремней */
.tie-materials {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(138, 90, 58, 0.15);
}

.tie-materials-title {
    font-size: 18px;
    font-weight: 700;
    color: #8a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.tie-materials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tie-materials-item {
    flex: 1;
    min-width: 220px;
    background: #e8dcd0;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #3a2a1a;
    line-height: 1.45;
}

/* Схема монтажа */
.tie-scheme-install {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 20px 24px;
    margin: 25px 0;
    border: 1px solid rgba(138, 90, 58, 0.15);
}

.tie-scheme-install-title {
    font-size: 18px;
    font-weight: 700;
    color: #8a5a3a;
    margin-bottom: 16px;
    text-align: center;
}

.tie-scheme-install-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.tie-scheme-install-item {
    flex: 1;
    min-width: 180px;
    background: #e8dcd0;
    padding: 12px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #3a2a1a;
    text-align: center;
}

.tie-scheme-install-num {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #aa7a5a;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
}

/* Финальный призыв (call) */
.tie-call {
    background: linear-gradient(115deg, #aa7a5a 0%, #8a5a3a 100%);
    color: white;
    text-align: center;
    padding: 24px 20px;
    border-radius: 28px;
    font-size: 19px;
    font-weight: 600;
    margin-top: 30px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Адаптивность */
@media (max-width: 768px) {
    .tie-card {
        padding: 24px 18px;
        margin: 20px;
    }

    .tie-title {
        font-size: 26px;
        padding-left: 14px;
    }

    .tie-subtitle {
        font-size: 20px;
    }

    .tie-list {
        grid-template-columns: 1fr;
    }

    .tie-feature-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tie-calculation-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tie-calculation-item {
        text-align: left;
    }

    .tie-compare {
        flex-direction: column;
    }

    .tie-compare-left,
    .tie-compare-right {
        min-width: auto;
    }

    .tie-scheme-content,
    .tie-scheme-install-content {
        flex-direction: column;
    }
    
    .tie-scheme-item,
    .tie-scheme-install-item {
        min-width: auto;
    }

    .tie-materials-content {
        flex-direction: column;
    }
    
    .tie-materials-item {
        min-width: auto;
    }

    .tie-call {
        font-size: 16px;
        padding: 18px 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tie-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.login-form-wrapper {
    width:25%;
    margin:20px auto;
    background-color:black;
    border-radius:40px;
    height: 90px;
    padding: 30px!important;
}
/* Основные стили для карточки */
.zipper-card {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px 35px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #1e293b;
    line-height: 1.5;
    transition: box-shadow 0.3s ease;
}

.zipper-card:hover {
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.15);
}

/* Заголовок H2 */
.zipper-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0f3b2c;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 4px solid #eab308;
    display: inline-block;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

/* Подзаголовок H3 */
.zipper-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1e4620;
    margin: 30px 0 18px 0;
    padding-left: 12px;
    border-left: 6px solid #eab308;
}

/* Основной текст */
.zipper-text {
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
    color: #2d3e50;
}

/* Цитата / Выделенный блок */
.zipper-quote {
    background: #fefce8;
    border-left: 6px solid #eab308;
    padding: 18px 24px;
    margin: 25px 0;
    border-radius: 16px;
    font-size: 1.05rem;
    color: #3b3b1c;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

/* Список преимуществ */
.zipper-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    margin: 20px 0 30px;
}

.zipper-list li {
    background: #f8fafc;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zipper-list li:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(3px);
}

/* Сетка преимуществ (4-6 элементов) */
.zipper-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.zipper-grid-item {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    padding: 20px 18px;
    border-radius: 20px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f6;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.zipper-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px -12px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.zipper-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.zipper-grid-title {
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
    color: #0b3b2c;
}

.zipper-grid-desc {
    font-size: 0.9rem;
    color: #4a5a6e;
    line-height: 1.4;
}

/* Блок сравнения (две колонки) */
.zipper-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 35px 0;
    background: #f1f5f9;
    border-radius: 28px;
    padding: 20px 24px;
}

.zipper-compare-left,
.zipper-compare-right {
    flex: 1;
    min-width: 240px;
    background: white;
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.03);
    border: 1px solid #e2edf2;
}

.zipper-compare-title {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #cbd5e1;
}

.zipper-compare-left .zipper-compare-title {
    color: #b91c1c;
}
.zipper-compare-right .zipper-compare-title {
    color: #15803d;
}

.zipper-compare ul {
    padding-left: 20px;
    margin: 0;
}
.zipper-compare li {
    margin: 10px 0;
    font-size: 0.95rem;
}

/* Call to action / финальный блок */
.zipper-call {
    background: #0f3b2c;
    color: #fef9e0;
    padding: 20px 28px;
    border-radius: 28px;
    margin-top: 35px;
    font-size: 1.15rem;
    text-align: center;
    font-weight: 500;
    border: 1px solid #eab308;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

/* Адаптивность для планшетов и телефонов */
@media (max-width: 768px) {
    .zipper-card {
        padding: 20px 18px;
        margin: 20px 12px;
        border-radius: 20px;
    }
    .zipper-title {
        font-size: 1.6rem;
    }
    .zipper-subtitle {
        font-size: 1.4rem;
    }
    .zipper-feature-grid {
        gap: 16px;
    }
    .zipper-compare {
        flex-direction: column;
        gap: 18px;
        padding: 16px;
    }
    .zipper-list {
        grid-template-columns: 1fr;
    }
    .zipper-call {
        font-size: 1rem;
        padding: 16px 18px;
    }
}

/* Дополнительные мелкие улучшения */
.zipper-text strong,
.zipper-quote strong {
    color: #b45309;
}

.zipper-list li strong {
    color: #0f3b2c;
}

.zipper-call strong {
    color: #facc15;
}
/* Основной контейнер карточки */
.zipper15-card {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1000px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Заголовки */
.zipper15-title {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    border-left: 5px solid #2980b9;
    padding-left: 15px;
    line-height: 1.2;
}

.zipper15-subtitle {
    color: #2c3e50;
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
}

/* Текст и списки */
.zipper15-text {
    margin-bottom: 15px;
    font-size: 16px;
}

.zipper15-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.zipper15-list li {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

/* Цитата / Акцентный блок */
.zipper15-quote {
    background: #eef7ff;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-right: 4px solid #3498db;
    font-style: italic;
}

/* Сетка преимуществ (Feature Grid) */
.zipper15-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.zipper15-grid-item {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.zipper15-grid-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.zipper15-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.zipper15-grid-title {
    font-weight: bold;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.zipper15-grid-desc {
    font-size: 14px;
    color: #666;
}

/* Сравнительная таблица (Compare) */
.zipper15-compare {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.zipper15-compare-left, 
.zipper15-compare-center, 
.zipper15-compare-right {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 10px;
    background: #fcfcfc;
    border: 1px solid #eee;
}

.zipper15-compare-right {
    background: #f0fff4;
    border-color: #c6f6d5;
}

.zipper15-compare-title {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.zipper15-compare ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.zipper15-compare li {
    padding: 5px 0;
    border-bottom: 1px dashed #ddd;
}

/* Призыв к действию (Call to Action) */
.zipper15-call {
    background: #2c3e50;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .zipper15-card {
        padding: 15px;
    }
    
    .zipper15-title {
        font-size: 22px;
    }
    
    .zipper15-list {
        grid-template-columns: 1fr;
    }
}