/* ============================================================================ */
/* FASARIO WEBSITE - CSS STYLES */
/* ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* COLOR SCHEME */
:root {
    --color-primary: #1B5E8C;
    --color-dark: #2B2F33;
    --color-light-gray: #E7EAED;
    --color-white: #FFFFFF;
    --color-text: #2B2F33;
    --color-accent: #1B5E8C;
    --spacing-unit: 8px;
    --section-padding: 80px;
    --border-radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-dark);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================================ */
/* HEADER & NAVIGATION */
/* ============================================================================ */

.navbar {
    background-color: var(--color-white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.cta-link {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease;
}

.nav-link.cta-link:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* HAMBURGER MENU */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================================================ */
/* HERO SECTION */
/* ============================================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.hero-headline {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-dark);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-text {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: var(--color-dark);
}

.hero-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-contact {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.25rem;
    color: var(--color-white);
}

.phone-icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--color-white);
    text-decoration: underline;
}

/* ============================================================================ */
/* SECTIONS */
/* ============================================================================ */

.section {
    padding: var(--section-padding) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* PROBLEM SECTION */
.problem-section {
    background: linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 80px 0;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.problem-text {
    padding-right: 2rem;
    text-align: left;
    max-width: 580px;
}

.problem-text p:first-child {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.problem-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.problem-list li {
    padding-left: 2.2rem;
    position: relative;
    margin-bottom: 0.85rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.problem-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--color-white);
    background-color: var(--color-primary);
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.problem-solution {
    background-color: var(--color-white);
    padding: 1.75rem;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--border-radius);
    text-align: left;
    margin: 0;
    box-shadow: var(--shadow);
}

.problem-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
    justify-items: center;
}

.problem-image {
    border-radius: calc(var(--border-radius) * 1.2);
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.problem-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.image-caption {
    padding: 0.9rem 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}
    color: #666;
}

/* BEFORE/AFTER SECTION */
.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.before-after-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.before-after-container {
    position: relative;
    width: 100%;
    background-color: #f0f0f0;
    height: 400px;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.before-image, .after-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.before-image {
    z-index: 1;
}

.after-image {
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}

.slider-handle {
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: var(--color-white);
    cursor: col-resize;
    opacity: 1;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease;
}

.slider-handle:hover {
    box-shadow: 0 0 20px rgba(27, 94, 140, 0.8);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--color-primary);
    z-index: 11;
}

.slider-handle::after {
    content: '◀  ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: bold;
    z-index: 12;
    letter-spacing: 2px;
}

.case-details {
    padding: 1.5rem;
    background-color: var(--color-light-gray);
}

.case-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.before-after-cta {
    text-align: center;
}

/* PROCESS SECTION */
.process-section {
    background-color: var(--color-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-step {
    background-color: var(--color-light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-title {
    margin-bottom: 1rem;
}

.step-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-top: auto;
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


/* SERVICES SECTION */
.services-section {
    background-color: var(--color-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* WHY FASARIO SECTION */
.why-fasario-section {
    background-color: var(--color-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-item {
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-light-gray);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-item:hover {
    transform: translateX(5px);
}

.advantage-number {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.advantage-item h3 {
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #666;
    font-size: 0.95rem;
}

/* CASE STUDIES SECTION */
.case-studies-section {
    background-color: var(--color-light-gray);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-study-content h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.case-study-content p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.case-study-content .btn-text {
    display: inline-block;
    margin-top: 0.5rem;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--color-light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--color-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ SECTION */
.faq-section {
    background-color: var(--color-light-gray);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--color-white);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-dark);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: var(--color-light-gray);
}

.faq-question:after {
    content: "▼";
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.faq-item.active .faq-question:after {
    transform: rotate(-180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTACT FORM SECTION */
.final-cta-section {
    background-color: var(--color-white);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--color-light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 140, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

.contact-info {
    background-color: var(--color-light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: fit-content;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
}

.contact-details strong {
    color: var(--color-dark);
}

.contact-details a {
    color: var(--color-primary);
}

/* ============================================================================ */
/* FOOTER */
/* ============================================================================ */

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    text-align: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================================================================ */
/* RESPONSIVE DESIGN - TABLETS (1024px and below) */
/* ============================================================================ */

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .problem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problem-text {
        padding-right: 0;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================================================ */
/* RESPONSIVE DESIGN - MOBILE (768px and below) */
/* ============================================================================ */

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 15px;
    }

    /* NAVIGATION */
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 100;
    }

    .nav-menu.active {
        max-height: 100vh;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--color-light-gray);
        width: 100%;
    }

    .nav-link.cta-link {
        display: block;
        margin: 1rem 1.5rem;
        width: auto;
        border-bottom: none;
    }

    /* HERO SECTION */
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .hero-contact {
        margin-top: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    /* PROBLEM SECTION */
    .problem-visuals {
        grid-template-columns: 1fr;
    }

    .problem-image img {
        height: 200px;
    }

    /* BEFORE/AFTER SECTION */
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .before-after-container {
        height: 300px;
    }

    /* PROCESS SECTION */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-image {
        height: 150px;
    }

    /* SERVICES SECTION */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    /* WHY FASARIO SECTION */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-item {
        padding: 1.5rem;
    }

    /* CASE STUDIES SECTION */
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-study-image {
        height: 200px;
    }

    /* TESTIMONIALS SECTION */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* CONTACT SECTION */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* FOOTER */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================================================ */
/* RESPONSIVE DESIGN - SMALL MOBILE (480px and below) */
/* ============================================================================ */

@media (max-width: 480px) {
    :root {
        --section-padding: 30px;
    }

    .container {
        padding: 0 12px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 0.95rem;
    }

    /* HEADER */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    /* HERO SECTION */
    .hero-headline {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 30px 12px;
    }

    .hero-cta {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .hero-badges {
        gap: 0.75rem;
    }

    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .contact-item {
        font-size: 1rem;
    }

    .phone-icon {
        font-size: 1.25rem;
    }

    /* SECTIONS */
    .section {
        padding: 25px 0;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* PROBLEM SECTION */
    .problem-text {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .problem-list li {
        padding-left: 1.25rem;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .problem-solution {
        padding: 1rem;
        border-left-width: 3px;
    }

    .problem-image img {
        height: 150px;
    }

    .image-caption {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    /* BEFORE/AFTER SECTION */
    .before-after-grid {
        gap: 1.5rem;
    }

    .before-after-container {
        height: 250px;
    }

    .case-details {
        padding: 1rem;
    }

    .case-details p {
        margin-bottom: 0.4rem;
        font-size: 0.85rem;
    }

    .before-after-cta {
        margin-top: 1.5rem;
    }

    /* PROCESS SECTION */
    .process-steps {
        gap: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .step-description {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .step-image {
        height: 120px;
    }

    /* SERVICES SECTION */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* WHY FASARIO SECTION */
    .advantages-grid {
        gap: 1rem;
    }

    .advantage-item {
        padding: 1.25rem;
        border-left-width: 3px;
    }

    .advantage-number {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .advantage-item h3 {
        margin-bottom: 0.4rem;
        font-size: 1rem;
    }

    .advantage-item p {
        font-size: 0.85rem;
    }

    /* CASE STUDIES SECTION */
    .case-studies-grid {
        gap: 1rem;
    }

    .case-study-image {
        height: 150px;
    }

    .case-study-content {
        padding: 1rem;
    }

    .case-study-content h3 {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .case-study-content p {
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
    }

    /* TESTIMONIALS SECTION */
    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
        border-top-width: 3px;
    }

    .stars {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .testimonial-author {
        font-size: 0.8rem;
    }

    /* FAQ SECTION */
    .faq-items {
        max-width: 100%;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-question:after {
        font-size: 0.7rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }

    /* CONTACT SECTION */
    .contact-form-wrapper {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-info {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 16px;
    }

    .form-note {
        margin-top: 0.75rem;
        font-size: 0.75rem;
    }

    .contact-info h3 {
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .contact-details p {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    /* FOOTER */
    .footer {
        padding: 2rem 0 0.75rem;
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }

    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.7rem;
    }
}
.problem-bg-section {
    position: relative;
    background-image: url('../foto/brudna-elewacja-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.problem-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.problem-bg-section .container {
    position: relative;
    z-index: 1;
}

.problem-bg-section .section-title,
.problem-bg-section .problem-text,
.problem-bg-section .problem-text p,
.problem-bg-section .problem-text li,
.problem-bg-section .problem-solution {
    color: #ffffff;
}

.problem-bg-section .problem-list {
    padding-left: 20px;
}
.problem-bg-section .problem-text {
    background: rgba(0, 0, 0, 0.22);
    color: #ffffff;
    max-width: 720px;
    padding: 32px;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    margin: 0 auto;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.problem-bg-section .problem-text p,
.problem-bg-section .problem-text li,
.problem-bg-section .problem-solution,
.problem-bg-section .problem-text strong {
    color: #ffffff;
}

.problem-bg-section .problem-text p,
.problem-bg-section .problem-text li,
.problem-bg-section .problem-solution {
    color: #2B2F33;
}

.problem-bg-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.problem-bg-section .problem-list {
    margin: 20px 0;
    padding-left: 22px;
}

.problem-bg-section .btn.btn-primary {
    display: inline-block;
    margin-top: 15px;
}

/* Header logo — compact version */
.navbar {
    min-height: 70px;
    padding: 6px 0;
}

.navbar-content {
    min-height: 58px;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    align-items: center;
}

@media (max-width: 768px) {
    .navbar {
        min-height: 58px;
        padding: 4px 0;
    }

    .navbar-content {
        min-height: 50px;
    }

    .logo-img {
        height: 42px;
    }
}
/* ===== FASARIO size fixes ===== */

/* Compact header */
.navbar {
    min-height: 66px;
    padding: 4px 0;
}

.navbar-content {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.logo-img {
    width: 230px;
    max-width: 230px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    white-space: nowrap;
}

/* Hero */
.hero {
    min-height: 82vh;
}

.hero-background,
.hero-background img {
    height: 100%;
}

.hero-background img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    max-width: 820px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Problem section */
.problem-bg-section {
    min-height: 620px;
    display: flex;
    align-items: center;
}

.problem-bg-section .problem-text {
    max-width: 720px;
}

/* Process images */
.step-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

/* Case study images */
.case-study-image {
    height: 260px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        min-height: 58px;
        padding: 4px 0;
    }

    .navbar-content {
        min-height: 52px;
    }

    .logo-img {
        width: 170px;
        max-width: 170px;
    }

    .hero {
        min-height: 76vh;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .problem-bg-section {
        min-height: auto;
        padding: 70px 0;
    }

    .step-image {
        height: 190px;
    }

    .case-study-image {
        height: 210px;
    }
}
.hero-contact .phone-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-color: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hero-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-contact .contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}
/* Space between Hero and Problem section */
.problem-section {
    margin-top: 60px;
}
/* Problem section — dark transparent cards */
.problem-bg-section .problem-text,
.problem-bg-section .problem-card,
.problem-bg-section .problem-item,
.problem-bg-section .problem-content > div {
    background: rgba(0, 0, 0, 0.30);
    color: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* White text inside all cards */
.problem-bg-section .problem-text p,
.problem-bg-section .problem-text li,
.problem-bg-section .problem-text strong,
.problem-bg-section .problem-card,
.problem-bg-section .problem-card p,
.problem-bg-section .problem-card h3,
.problem-bg-section .problem-card li,
.problem-bg-section .problem-item,
.problem-bg-section .problem-item p,
.problem-bg-section .problem-item h3,
.problem-bg-section .problem-item li {
    color: #ffffff;
}
/* Problem section — make image cards dark and transparent */
.problem-bg-section .problem-visuals,
.problem-bg-section .problem-image,
.problem-bg-section .image-caption {
    background: rgba(0, 0, 0, 0.32) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.22) !important;
}

/* Each small card */
.problem-bg-section .problem-image {
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Captions under images */
.problem-bg-section .image-caption {
    margin: 0 !important;
    padding: 12px 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
}

/* Text inside problem section */
.problem-bg-section .problem-image p,
.problem-bg-section .problem-image span,
.problem-bg-section .problem-image h3,
.problem-bg-section .problem-image strong,
.problem-bg-section .image-caption {
    color: #ffffff !important;
}
/* Problem section — remove white boxes behind list items */
.problem-bg-section .problem-list,
.problem-bg-section .problem-list li {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Make problem text fully white */
.problem-bg-section .problem-text,
.problem-bg-section .problem-text p,
.problem-bg-section .problem-text li,
.problem-bg-section .problem-text strong,
.problem-bg-section .problem-solution {
    color: #ffffff !important;
}

/* Make the readable text panel dark transparent */
.problem-bg-section .problem-text {
    background: rgba(0, 0, 0, 0.28) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 22px !important;
    padding: 32px !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* White check marks */
.problem-bg-section .problem-list li::before {
    color: #ffffff !important;
}
.problem-bg-section * {
    background-color: transparent;
}

.problem-bg-section .problem-text {
    background: rgba(0, 0, 0, 0.28) !important;
}
/* Strong fact section — narrower and centered */
.strong-fact-section {
    text-align: center;
    padding: 70px 0;
}

.strong-fact-section .container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strong-fact-section .section-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.strong-fact-section .section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.strong-fact-section .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 24px auto 0;
}
/* Testimonials — 3 cards */
.testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* Make Hero and Problem background photos brighter */

/* First section — Hero */
.hero-overlay {
    background: rgba(0, 0, 0, 0.18) !important;
}

/* Second section — Problem */
.problem-bg-section::before {
    background: rgba(0, 0, 0, 0.12) !important;
}

/* Make background images look cleaner */
.hero-background img {
    filter: brightness(1.08) contrast(1.04) saturate(1.06);
}

.problem-bg-section {
    background-blend-mode: normal;
}
/* Hero — make secondary button blue like primary */
.hero .btn-secondary {
    background: #183A8F !important;
    color: #ffffff !important;
    border: 2px solid #183A8F !important;
}

.hero .btn-secondary:hover {
    background: #102B6F !important;
    border-color: #102B6F !important;
    color: #ffffff !important;
}
/* Hero buttons — make both buttons identical */
.hero .hero-cta .btn,
.hero .hero-cta .btn-primary,
.hero .hero-cta .btn-secondary {
    background: #183A8F !important;
    color: #ffffff !important;
    border: 2px solid #183A8F !important;
    box-shadow: 0 10px 24px rgba(24, 58, 143, 0.28) !important;
}

/* Hover — same for both */
.hero .hero-cta .btn:hover,
.hero .hero-cta .btn-primary:hover,
.hero .hero-cta .btn-secondary:hover {
    background: #102B6F !important;
    color: #ffffff !important;
    border-color: #102B6F !important;
    transform: translateY(-2px);
}
/* Hero subtitle — transparent oval card */
.hero-subheadline {
    display: inline-block;
    max-width: 760px;

    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;

    padding: 14px 26px;
    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-subheadline {
        display: block;
        border-radius: 24px;
        padding: 14px 18px;
        max-width: 100%;
    }
}
/* Process section — 3 cards in one row */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Make cards equal height */
.process-step {
    height: 100%;
}

/* Tablet — 2 cards in row */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile — 1 card in row */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}
/* Services section — 4 cards in one row */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Make service cards equal height */
.service-card {
    height: 100%;
}

/* Tablet — 2 cards in row */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile — 1 card in row */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Why FASARIO section — 4 cards in one row */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Make advantage cards equal height */
.advantage-item {
    height: 100%;
}

/* Tablet — 2 cards in row */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile — 1 card in row */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}
/* Hero phone button */
.hero-contact {
    margin-top: 18px;
}

.hero-phone-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #183A8F !important;
    color: #ffffff !important;
    border: 2px solid #183A8F !important;

    padding: 14px 26px;
    border-radius: 999px;

    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 10px 24px rgba(24, 58, 143, 0.28) !important;
}

.hero-phone-btn:hover {
    background: #102B6F !important;
    border-color: #102B6F !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}
/* Strong fact section — narrow centered block */
.strong-fact-section {
    padding: 60px 20px;
}

.strong-fact-section .container {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.strong-fact-section .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 32px;
    line-height: 1.25;
}

.strong-fact-section .section-subtitle {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.strong-fact-section .btn {
    display: inline-flex;
    margin: 24px auto 0;
}
/* Strong fact section — smaller height */
.strong-fact-section {
    padding: 35px 20px !important;
}

.strong-fact-section .section-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
}

.strong-fact-section .section-subtitle {
    margin-bottom: 10px !important;
}

.strong-fact-section .btn {
    margin-top: 12px !important;
    padding: 12px 24px !important;
}
/* Before / After section — table without visible borders */
.before-after-section {
    background: #ffffff;
    padding: 70px 0;
}

.before-after-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    margin-top: 34px;
}

.before-after-table th,
.before-after-table td {
    border: none;
    padding: 22px 20px;
    text-align: left;
    vertical-align: top;
}

.before-after-table th {
    color: #183A8F;
    font-weight: 700;
    font-size: 16px;
}

.before-after-table td {
    color: #2B2F33;
    font-size: 15px;
    line-height: 1.55;
}

.before-after-table tbody tr {
    background: rgba(24, 58, 143, 0.05);
    border-radius: 18px;
}

.before-after-table tbody tr:nth-child(even) {
    background: rgba(24, 58, 143, 0.09);
}

/* Rounded visual rows */
.before-after-table tbody td:first-child {
    border-radius: 18px 0 0 18px;
    font-weight: 700;
    color: #183A8F;
}

.before-after-table tbody td:last-child {
    border-radius: 0 18px 18px 0;
}

/* Space between rows */
.before-after-table {
    border-collapse: separate;
    border-spacing: 0 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .before-after-table,
    .before-after-table thead,
    .before-after-table tbody,
    .before-after-table th,
    .before-after-table td,
    .before-after-table tr {
        display: block;
        width: 100%;
    }

    .before-after-table thead {
        display: none;
    }

    .before-after-table tbody tr {
        padding: 18px;
        border-radius: 18px;
        margin-bottom: 16px;
    }

    .before-after-table tbody td {
        padding: 8px 0;
    }

    .before-after-table tbody td:first-child,
    .before-after-table tbody td:last-child {
        border-radius: 0;
    }

    .before-after-table tbody td:nth-child(1)::before {
        content: "Powierzchnia: ";
        font-weight: 700;
    }

    .before-after-table tbody td:nth-child(2)::before {
        content: "Przed: ";
        font-weight: 700;
        color: #183A8F;
    }

    .before-after-table tbody td:nth-child(3)::before {
        content: "Po: ";
        font-weight: 700;
        color: #183A8F;
    }

    .before-after-table tbody td:nth-child(4)::before {
        content: "Efekt: ";
        font-weight: 700;
        color: #183A8F;
    }
}
/* Reduce space between Before/After and Process sections */
.before-after-section {
    padding-bottom: 30px !important;
}

.process-section {
    padding-top: 30px !important;
}
/* Mobile fixes — header, logo and hero badges */
@media (max-width: 768px) {

    /* Шапка становится компактной и не перекрывает первую секцию */
    .navbar {
        min-height: 64px !important;
        padding: 4px 0 !important;
    }

    .navbar-content {
        min-height: 56px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Логотип помещается полностью */
    .logo {
        max-width: 170px !important;
        overflow: visible !important;
    }

    .logo-img {
        width: 160px !important;
        max-width: 160px !important;
        height: auto !important;
        display: block;
        object-fit: contain;
    }

    /* Первая секция опускается ниже, чтобы шапка не закрывала лого/текст */
    .hero {
        padding-top: 95px !important;
        min-height: auto !important;
        padding-bottom: 55px !important;
    }

    .hero-content {
        padding-top: 20px !important;
        max-width: 100%;
    }

    /* Заголовок меньше на телефоне */
    .hero-headline {
        font-size: 34px !important;
        line-height: 1.12 !important;
        margin-bottom: 18px !important;
    }

    .hero-subheadline {
        font-size: 15px !important;
        line-height: 1.5 !important;
        border-radius: 22px !important;
        padding: 14px 16px !important;
    }

    /* Кнопки не наезжают друг на друга */
    .hero-cta {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        margin-top: 22px !important;
    }

    .hero-cta .btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Значки становятся вертикально и не наезжают на текст */
    .hero-badges {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 22px !important;
    }

    .hero-badges .badge {
        width: 100% !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
        padding: 10px 14px !important;
        border-radius: 18px !important;
    }

    .hero-badges .badge-icon {
        flex-shrink: 0 !important;
        margin-top: 2px !important;
    }
}
.logo-img {
    width: 145px !important;
    max-width: 145px !important;
}
/* Mobile fix — Problem section list icons */
@media (max-width: 768px) {
    .problem-bg-section .problem-list {
        list-style: none !important;
        padding-left: 0 !important;
        margin: 18px 0 !important;
    }

    .problem-bg-section .problem-list li {
        position: relative !important;
        padding-left: 34px !important;
        margin-bottom: 12px !important;
        line-height: 1.45 !important;
        background: transparent !important;
    }

    .problem-bg-section .problem-list li::before {
        content: "✓" !important;
        position: absolute !important;
        left: 0 !important;
        top: 0.05em !important;

        width: 22px !important;
        height: 22px !important;
        border-radius: 50% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: #183A8F !important;
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }

    .problem-bg-section .problem-text {
        padding: 24px 18px !important;
    }
}