/* =========================================
   RESET & VARIÁVEIS
   ========================================= */
:root {
    --primary-blue: #000040;
    --yellow: #F0BD04;
    --text-dark: #111827;
    --text-gray: #4B5563;
    --text-light-gray: #9CA3AF;
    --bg-gray: #F9FAFB;
    --white: #FFFFFF;
    --border-gray: #E5E7EB;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    margin-right: 40px;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--yellow);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow:
        0px 5px 10px -3px rgba(0, 0, 0, 0.1),
        0px 0px 8px rgba(240, 189, 4, 0.4);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow:
        0px 8px 15px -3px rgba(0, 0, 0, 0.15),
        0px 0px 12px rgba(240, 189, 4, 0.6);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding-top: 70px;
    padding-bottom: 100px;
    background: linear-gradient(0deg, #F9FAFB, #FFFFFF);
    overflow: hidden;
}

.blur-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    left: -100px;
    bottom: 0;
    background: rgba(240, 189, 4, 0.06);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 32px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
}

.dot-status {
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(90deg, #A3730D 0%, #F0BD04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--yellow);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0px 25px 30px -5px rgba(0, 0, 0, 0.15);
}

.btn-primary svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.hero-image img {
    width: 130%;
    max-width: none;
    height: auto;
    display: block;
}


.logos-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    background: var(--white);
    scroll-margin-top: 91px;
}

.logos-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #374151;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(30px, 8vw, 100px);
    opacity: 0.6;
}

.logos-grid i {
    font-size: 48px;
    color: var(--text-light-gray);
    transition: all 0.3s ease;
    cursor: default;
}

.logos-grid i:hover {
    color: #111827;
    opacity: 1;
    transform: scale(1.1);
}


/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: 100px 0;
    background: var(--bg-gray);
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 60px;
}

.overline {
    color: var(--yellow);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-gray);
}

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

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    border-bottom: 4px solid #000040;
    overflow: hidden;
}

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

.icon-box {
    width: 56px;
    height: 56px;
    background: #F3F4F6;
    border: 1px solid #FFEDD5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box span,
.icon-box i {
    color: var(--yellow);
    font-size: 32px;
    text-shadow: none;
    font-weight: 400;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}


.card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.check-icon {
    color: #22C55E;
    background-color: transparent;
    border: 1.5px solid #22C55E;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-weight: 600;
    margin-top: 10px;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}


.process-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    margin-top: 10px;
}

.process-text p {
    color: #4B5563;
    font-size: 17.9px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 1px solid #F3F4F6;
    padding: 15px 24px;
    border-radius: 12px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.stat-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   TIMELINE
   ========================================= */

.process-graphic {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0px 10px 40px -10px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 700px;
    margin-top: 50px;
}

.process-graphic h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.separator-line {
    width: 100%;
    height: 1px;
    background-color: #E5E7EB;
    margin-bottom: 30px;
}

.timeline-row {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}

.timeline-row.last {
    padding-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    flex-shrink: 0;
    position: relative;
}

.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F3F4F6;
    color: #9CA3AF;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.circle.active {
    background-color: var(--yellow);
    color: #fff;
    box-shadow: 0 4px 10px rgba(250, 204, 21, 0.4);
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.line {
    position: absolute;
    top: 32px;
    bottom: -40px;
    width: 2px;
    background-color: #F3F4F6;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-row.last .line {
    display: none;
}

.timeline-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    padding-top: 4px;
}

.label-head {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.label-head.yellow {
    color: var(--yellow);
}

.task-text {
    font-size: 15px;
    color: #4B5563;
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: nowrap;
}

.task-text.bold {
    font-weight: 600;
    color: var(--text-dark);
}

.task-text.highlight {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    color: var(--yellow);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 2px;
}

.ready-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--yellow);
    text-transform: uppercase;
    margin: 0;
}

.progress-track {
    width: 100%;
    height: 6px;
    background-color: #F3F4F6;
    border-radius: 10px;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
}

.progress-bar.gray {
    background-color: #E5E7EB;
}

.progress-bar.yellow {
    background-color: var(--yellow);
}


.col-ws .progress-track {
    background-color: transparent;
}

/* =========================================
    FORM
   ========================================= */
.cta-form-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    background-image: linear-gradient(160deg,
            #A3730D 0%,
            #c99809 25%,
            #F0BD04 50%,
            #c99809 75%,
            #A3730D 100%);

    background-size: cover;
    background-repeat: no-repeat;
}

.cta-form-section::before {
    display: none !important;
}

.cta-header {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.cta-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #6B7280;
    border-radius: 8px;
    font-size: 16px;
    color: #1F2937;
    background: var(--white);
    outline: none;
    transition: all 0.2s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 0, 64, 0.1);
}

.input-group.full-width {
    margin-bottom: 20px;
}

.btn-submit-dark {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    user-select: none;
    touch-action: manipulation;
    display: block;
    margin: 50px auto 0;
    width: 240px;
}

.btn-submit-dark .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
}

.btn-submit-dark .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(240, 100%, 8%) 0%,
            hsl(240, 100%, 16%) 8%,
            hsl(240, 100%, 16%) 92%,
            hsl(240, 100%, 8%) 100%);
}

.btn-submit-dark .front {
    display: block;
    position: relative;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-blue);
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 34ms;
}

.btn-submit-dark:active .front {
    transform: translateY(-2px);
}

.btn-submit-dark:active .shadow {
    transform: translateY(1px);
}

.btn-submit-dark:focus:not(:focus-visible) {
    outline: none;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

.popup-content {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #000040;
    margin-bottom: 10px;
}

.popup-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-popup-close {
    background-color: #000040;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.btn-popup-close:hover {
    background-color: #6565AE;
}


/* =========================================
   FOOTER
   ========================================= */
#footer {
    background: #000040;
    color: #ffffff;
    padding-top: 60px;
}

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

#footer a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s;
}

#footer a:hover {
    color: #FFFFFF;
}

.footer-wrapper-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.logo-phone {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-phone img {
    width: 90px;
    height: auto;
    border-radius: 0;
    margin-bottom: 25px;
    display: block;
}

.phone-email-block p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}

.footer-content {
    flex: 2;
    text-align: center;
}

.adress {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: left;
}

.adress p {
    font-size: 14px;
    line-height: 24px;
    color: #E0E0E0;
}

.socials-medias {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.btn-footer-link {
    display: inline-block;
    padding: 12px 30px;
    background: #F0BD04;
    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-footer-link:hover {
    box-shadow: 0 0 20px rgba(240, 189, 4, 0.8);
}

.footer-icons-group {
    display: flex;
    gap: 15px;
}

.footer-icons-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 5px;
}

.footer-icons-group a i {
    transition: all 0.3s ease;
}

.footer-icons-group a:hover i {
    color: #FFFFFF;
    transform: translateY(-5px);
}

.footer-icons-group a:hover {
    color: #FFFFFF;
}

.fim {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    text-align: center;
    clear: both;
}

.fim p {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
}

.h2-spacer {
    display: block;
    height: 7px;
}

/* ==========================================================================
   RESPONSIVIDADE MOBILE
   ========================================================================== */

.mobile-break {
    display: none;
}

@media (max-width: 991px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
    }

    .process-graphic {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-wrapper-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .logo-phone,
    .footer-content,
    .socials-medias {
        width: 100%;
        align-items: center;
        text-align: center;
    }

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

    .socials-medias {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .process-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding-top: 120px;
    }

    .hero-image {
        display: none;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-description br {
        display: none;
    }

    .cta-header h2 {
        font-size: 32px;
    }

    .btn-primary {
        white-space: nowrap;
        flex-direction: row;
        width: auto;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        gap: 8px;
    }

    .btn-primary .material-symbols-outlined {
        font-size: 18px;
    }

    .btn-primary svg {
        width: 20px;
        height: 20px;
    }

    .logos-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 10px;
        justify-items: center;
    }

    .mobile-break {
        display: inline;
    }

    .logos-title {
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .timeline-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {

    .nav-container {
        justify-content: space-between;
        padding: 0 10px;
        gap: 5px;
    }

    .logo {
        margin-right: 0;
        flex-shrink: 0;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        display: flex;
        gap: 8px;
        margin-right: 0;
    }

    .nav-links a {
        font-size: 11px;
        padding: 0;
        font-weight: 600;
        letter-spacing: -0.3px;
    }

    .btn-nav {
        padding: 6px 10px;
        font-size: 10px;
        white-space: nowrap;
        border-radius: 6px;
        flex-shrink: 0;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .badge-status {
        margin-left: -120px;
        margin-bottom: 20px;

        font-size: 12px;
        padding: 4px 10px;
        gap: 6px;
    }

    .dot-status {
        width: 5px;
        height: 5px;
    }


    .hero-section {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .services-section {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .section-header h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .section-header p {
        text-align: left;
        padding: 0 10px;
    }

    .logos-title {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 25px;
    }

    .process-text {
        text-align: left;
        padding: 0 20px;
    }

    .process-text h2 {
        text-align: center;
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .process-text .overline {
        text-align: center;
        font-size: 14px;
        display: block;
    }

    .process-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .process-graphic {
        padding: 20px 15px;
        margin-top: -10px;
    }

    .timeline-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding-top: 2px;
    }

    .timeline-marker {
        width: 30px;
        margin-right: 10px;
    }

    .circle {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .circle.active {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .line {
        top: 24px;
        left: 12px;
    }

    .label-head {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .task-text {
        font-size: 12px;
        line-height: 1.3;
        white-space: normal;
        margin-bottom: 6px;
    }

    .task-text.highlight {
        font-size: 12px;
    }

    .ready-text {
        font-size: 11px;
    }

    .progress-track,
    .progress-bar {
        height: 4px;
        border-radius: 4px;
    }

    .process-graphic h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

}

.lang-switcher .lang-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.lang-icon {
    width: 20px !important;
    height: auto !important;
    margin-right: 7px !important;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 480px) {

    .btn-nav {
        display: none !important;
    }

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
    }

    .nav-links {
        display: flex !important;
        flex: 1 !important;
        justify-content: center !important;
        gap: 12px !important;
        margin: 0 !important;
    }

    .nav-links a {
        font-size: 14px !important;
        white-space: nowrap;
    }

    .lang-switcher {
        margin-left: 0 !important;
        padding-left: 10px !important;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        display: flex !important;
        align-items: center !important;
    }

    .lang-icon {
        width: 18px !important;
        min-width: 18px !important;
        height: auto !important;
        margin-right: 5px !important;
    }

    .lang-btn span {
        display: none !important;
    }

    .logo {
        flex-shrink: 0 !important;
    }
}