/* --- RESET & VARIABLES --- */
:root {
    --primary-yellow: #ffcc00;
    --dark-bg: #111111;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #666;
    --card-shadow: 0 4px 15px rgba(0,0,0,0.1);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-yellow);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-black {
    background: black;
    color: white;
}

.btn-black:hover {
    background: #333;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 700;
}

/* --- HEADER --- */
header {
    background: #0a0a0a url('images/bg-pattern.jpg') center / cover no-repeat;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}



header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Kablik SVG logo */
.logo-icon {
    width: 124px;
    height: 76px;
    display: block;
}

nav ul {
    display: flex;
    gap: 15px;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: #ccc;
    font-size: 0.9rem;
}

nav a:hover, nav a.active {
    color: var(--primary-yellow);
}

/* --- NAV DROPDOWNS --- */
nav ul li {
    position: relative;
}

nav ul li > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    flex-direction: column;
    gap: 0;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

nav ul li:hover > .sub-menu {
    display: flex;
}

nav ul li > .sub-menu li {
    width: 100%;
}

nav ul li > .sub-menu li a {
    display: block;
    padding: 8px 20px;
    white-space: nowrap;
    font-size: 0.85rem;
}

nav ul li > .sub-menu li a:hover {
    background: rgba(255, 204, 0, 0.1);
}

nav ul li .fa-chevron-down {
    font-size: 0.6rem;
    margin-left: 4px;
    transition: transform 0.2s;
}

nav ul li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.header-iso-badge {
    width: 70px;
    height: 70px;
    margin-left: 15px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-switch a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.lang-switch a:hover {
    transform: translateY(-1px);
}

.lang-switch a.active {
    border-color: var(--primary-yellow);
}

.flag {
    width: 22px;
    height: 14px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
    display: inline-block;
    object-fit: cover;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.admin-bar header {
    top: 32px;
}



/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--primary-yellow);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

/* --- HERO CAROUSEL --- */
.hero-carousel-section {
    position: relative;
}

.hero-carousel {
    width: 100%;
    height: 80vh;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-slide-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.hero-slide-content h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-carousel .swiper-button-prev,
.hero-carousel .swiper-button-next {
    color: white;
    width: 50px;
    height: 50px;
}

.hero-carousel .swiper-button-prev::after,
.hero-carousel .swiper-button-next::after {
    font-size: 24px;
}

.hero-carousel .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-yellow);
}

/* --- BRANDS BANNER --- */
.brands {
    background: white;
    padding: 20px 0;
    border-bottom: 4px solid var(--primary-yellow);
}

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

.brand-carousel {
    overflow: hidden;
}

.brand-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    width: 200px;
    height: 50px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.brand-logo:hover {
    opacity: 1;
}

/* --- FEATURES (YELLOW SECTION) --- */
.features {
    background-color: var(--primary-yellow);
    padding: 60px 0;
}

.features .section-title {
    color: var(--text-dark);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- ADVANTAGES (DARK SECTION) --- */
.advantages {
    background: linear-gradient(rgba(20,20,20,0.9), rgba(20,20,20,0.9)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    padding: 80px 0;
    color: var(--text-light);
}

.advantages .section-title {
        color: var(--primary-yellow);
    }


.adv-card {
    background: white;
    color: var(--text-dark);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.adv-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--text-dark);
}

.adv-card h3 {
    margin-bottom: 15px;
}

.adv-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* --- NEWS --- */
.news {
    background-color: var(--primary-yellow);
    padding: 80px 0;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-img-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.news-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Special styling for ISO logo to match screenshot */
.iso-img {
    padding: 20px;
    object-fit: contain !important;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-link {
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
}

/* --- CONTACT FORM --- */
.contact-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/contact-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    background-color: var(--primary-yellow);
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-intro {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.form-control {
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    width: 100%;
    font-family: inherit;
}

textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 120px;
}

.full-width {
    grid-column: 1 / -1;
}

/* --- FOOTER --- */
footer {
    background: #0d0d0d url('images/bg-pattern.jpg') center / cover no-repeat;
    color: #999;
    padding-top: 60px;
    font-size: 0.85rem;
}

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

.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-col a:not(.social-icon) {
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.copyright {
    border-top: 1px solid #222;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-iso-badge {
    width: 50px;
    height: 50px;
}

/* --- PAGE TEMPLATE --- */
.page-header {
    background-color: white;
    color: var(--text-dark);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.page-content {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.content-article {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.content-article h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.content-article p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.content-article ul,
.content-article ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-article li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-article a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: underline;
}

.content-article a:hover {
    color: var(--primary-yellow);
}

.content-article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.content-article blockquote {
    border-left: 4px solid var(--primary-yellow);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hamburger { display: block; }

    header .container {
        flex-wrap: nowrap;
        position: relative;
    }

    .logo-icon {
        width: 90px;
        height: auto;
    }

    nav#main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #0a0a0a;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 1000;
        padding: 80px 20px 40px;
    }

    nav#main-nav.open {
        display: flex;
    }

    nav#main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100%;
    }

    nav#main-nav ul li {
        width: 100%;
        text-align: center;
    }

    nav#main-nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        color: #fff;
    }

    nav#main-nav ul li > .sub-menu {
        position: static;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        min-width: auto;
        padding: 0;
    }

    nav#main-nav ul li:hover > .sub-menu,
    nav#main-nav ul li.open > .sub-menu {
        display: flex;
    }

    nav#main-nav ul li > .sub-menu a {
        font-size: 0.95rem;
        color: #ccc;
        padding: 8px 0;
    }

    nav#main-nav .lang-switch {
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }

    .hero h1 { font-size: 2rem; }
    .hero-slide-content h1 { font-size: 2rem; }
    .hero-carousel { height: 50vh; }
    .hero-slide-logo { max-height: 35px; }
    .hero-carousel .swiper-button-prev,
    .hero-carousel .swiper-button-next { display: none; }
    .form-grid { grid-template-columns: 1fr; }
    .page-header { padding: 50px 0 30px; }
    .page-header h1 { font-size: 2rem; }
    .content-article { padding: 30px 20px; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- CONTACT PAGE STYLES --- */
.contact-cards-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

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

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.contact-card-icon i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.contact-card-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-card-links a {
    font-size: 0.88rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card-links a:hover {
    color: var(--primary-yellow);
}

.contact-card-links a i {
    width: 20px;
    color: var(--primary-yellow);
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-card-details span {
    font-size: 0.85rem;
    color: #555;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.contact-form-box {
    background-color: var(--primary-yellow);
    padding: 50px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-box h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-form-box .contact-intro {
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-form-message {
    margin-bottom: 15px;
    padding: 0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}
.contact-form-message.success {
    padding: 12px 16px;
    background: #d4edda;
    color: #155724;
}
.contact-form-message.error {
    padding: 12px 16px;
    background: #f8d7da;
    color: #721c24;
}

.contact-map-section {
    line-height: 0;
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards-section {
        padding: 30px 0;
    }
    .contact-card {
        padding: 25px;
    }
    .contact-form-section {
        padding: 40px 0;
    }
    .contact-form-box {
        padding: 25px 20px;
    }
    .contact-form-box h2 {
        font-size: 1.6rem;
    }
}

/* --- MANUFACTURERS PAGE STYLES --- */
.manufacturers-list-section {
    padding: 0 0 60px;
    background: #fff;
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.alphabet-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--dark-bg);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.alphabet-link:hover,
.alphabet-link.active {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.manufacturer-section {
    margin-bottom: 40px;
}

.letter-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-yellow);
    display: inline-block;
}

.manufacturer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 30px;
}

.manufacturer-name {
    font-size: 0.82rem;
    color: #444;
    padding: 3px 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .manufacturer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .alphabet-link {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* --- CONSTRUCTION PAGE STYLES --- */

.construction-page {
    overflow-x: hidden;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
    height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
}

.split-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.bg-yellow {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.content-wrapper {
    max-width: 600px;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-wrapper p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-text {
    font-weight: 600;
    margin-bottom: 25px !important;
}

/* Realization Section */
.realization-section {
    background-color: #1a1a1a; /* Dark background */
    padding: 80px 0;
    color: white;
    background-image: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); /* Subtle tech background */
    background-size: cover;
    background-position: center;
}

.yellow-text {
    color: var(--primary-yellow);
}

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

.benefits-grid {
    grid-template-columns: repeat(4, 1fr);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon i {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.step-card {
    background: white;
    color: var(--text-dark);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    transition: transform 0.3s ease;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.step-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #4a5568;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.center-card {
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        height: auto;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-image {
        min-height: 250px;
        min-width: unset;
    }

    .split-content {
        min-width: unset;
        padding: 30px 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .step-card {
        min-height: 140px;
        padding: 20px 15px;
    }

    .content-wrapper h2 {
        font-size: 1.8rem;
    }

    .realization-section {
        padding: 40px 0;
    }
}
