* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0d1b2a;
    color: #fff;
    padding-top: 80px;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, #091837, #061024);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 0 140px;
    border-bottom: 3px solid #f6ce4b;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    overflow: visible;
}
.logo {
    position: absolute;
    top: 10px;
    left: 30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #061024;
    box-shadow: 0 0 0 2px #061024, 0 8px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    overflow: hidden;
}
.logo-img {
    width: 100%;
    height: auto;
    transform: scale(1.3);
    display: block;
}
.navbar-center {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    padding: 0 20px;
    flex-wrap: nowrap;
    margin-left: auto;
}
.nav-item {
    position: relative;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #c0cbd6;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 3px solid transparent;
    border-radius: 2px;
    user-select: none;
}
.nav-item a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: inherit;
    width: 100%;
}
.nav-item i {
    font-size: 0.85rem;
    color: #c0cbd6;
    transition: color 0.25s ease;
}
.nav-item:hover,
.nav-item.active {
    color: #f6ce4b;
    border-bottom-color: #f6ce4b;
}
.nav-item:hover i,
.nav-item.active i {
    color: #f6ce4b;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) scaleY(0.8);
    transform-origin: top center;
    background: #1a2f4e;
    min-width: 220px;
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(246, 206, 75, 0.3);
    z-index: 100;
}
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scaleY(1);
}
.dropdown-menu li {
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #c0cbd6;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
}
.dropdown-menu li i {
    font-size: 1rem;
    color: #f6ce4b;
    width: 20px;
    text-align: center;
}
.dropdown-menu li:hover {
    background: rgba(246, 206, 75, 0.12);
    color: #f6ce4b;
    border-left-color: #f6ce4b;
}
.dropdown-menu li:hover i {
    color: #f6ce4b;
}
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    color: inherit;
}
.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.lang-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.lang-current-label {
    color: #c0cbd6;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color 0.25s ease;
    letter-spacing: 0.5px;
}
.lang-current-label:hover {
    color: #f6ce4b;
}
.lang-toggle-btn {
    cursor: pointer;
    font-size: 1.4rem;
    color: #f6ce4b;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(246, 206, 75, 0.08);
    transition: background 0.25s ease, transform 0.25s ease;
}
.lang-toggle-btn:hover {
    background: rgba(246, 206, 75, 0.18);
    transform: scale(1.12);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1a2f4e;
    min-width: 150px;
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(246, 206, 75, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 200;
}
.lang-dropdown.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.lang-dropdown li {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #c0cbd6;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    border-left: 3px solid transparent;
}
.lang-dropdown li:hover {
    background: rgba(246, 206, 75, 0.12);
    color: #f6ce4b;
    border-left-color: #f6ce4b;
}
.lang-dropdown li.active-lang {
    color: #f6ce4b;
    border-left-color: #f6ce4b;
}
.social-icon {
    font-size: 1.4rem;
    color: #f6ce4b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(246, 206, 75, 0.08);
    transition: background 0.25s ease, transform 0.25s ease;
}
.social-icon:hover {
    background: rgba(246, 206, 75, 0.18);
    transform: scale(1.12);
}
.gold-hr {
    border: none;
    border-top: 2px solid #f6ce4b;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0.6;
}
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #0d1b2a;
    overflow: hidden;
    padding: 60px 40px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            #0d1b2a 0%,
            rgba(13, 27, 42, 0.9) 30%,
            rgba(13, 27, 42, 0.4) 55%,
            rgba(13, 27, 42, 0) 75%
        ),
        url('../images/background.png') no-repeat right center / cover;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 20px 0;
}
.hero-content .gold {
    color: #f6ce4b;
}
.hero-content .white {
    color: #ffffff;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.hero-title .gold {
    display: inline-block;
}
.hero-sub {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.hero-desc {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: #d0d8e0;
    max-width: 600px;
}
.hero-desc .gold {
    color: #f6ce4b;
    font-weight: 600;
}
.hero-full-text {
    margin-top: 30px;
}
.hero-full-text p {
    font-size: 1rem;
    color: #d0d8e0;
    line-height: 1.7;
    margin-bottom: 15px;
}
.hero-full-text .highlight {
    color: #f6ce4b;
    font-weight: 600;
}
.btn-offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #f6ce4b;
    color: #0d1b2a;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(246, 206, 75, 0.3);
    cursor: pointer;
    text-decoration: none;
}
.btn-offer-cta:hover {
    background: #e8c03a;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(246, 206, 75, 0.5);
}
.btn-offer-cta i {
    transition: transform 0.3s ease;
}
.btn-offer-cta:hover i {
    transform: translateX(6px);
}
.boxes-section {
    padding: 70px 40px 30px;
    background: #0d1b2a;
}
.boxes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}
.box-item {
    background: linear-gradient(180deg, #1a2f4e 0%, #0f1f33 100%);
    border: 2px solid #f6ce4b;
    border-radius: 20px;
    padding: 30px 22px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(246, 206, 75, 0.10);
}
.box-icon {
    font-size: 3.2rem;
    color: #f6ce4b;
    margin-bottom: 18px;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-title {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #f6ce4b;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}
.box-title.smaller {
    font-size: 0.9rem;
}
.box-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #e0e6ed;
    font-weight: 300;
}
.features-section {
    padding: 10px 40px 30px;
    background: #0d1b2a;
    display: flex;
    justify-content: center;
    align-items: center;
}
.features-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 1 auto;
    min-width: 160px;
}
.feature-icon {
    font-size: 1.8rem;
    color: #f6ce4b;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.feature-text {
    display: flex;
    flex-direction: column;
}
.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f6ce4b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.feature-sub {
    font-size: 0.75rem;
    color: #d0d8e0;
    font-weight: 300;
    line-height: 1.3;
}
.feature-divider {
    width: 2px;
    height: 40px;
    background: #f6ce4b;
    flex-shrink: 0;
    opacity: 0.4;
}
.diagnostic-section {
    padding: 40px 40px 60px;
    background: #0d1b2a;
}
.diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}
.diagnostic-item {
    background: linear-gradient(180deg, #1a2f4e 0%, #0f1f33 100%);
    border: 2px solid #f6ce4b;
    border-radius: 20px;
    padding: 34px 26px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.diagnostic-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(246, 206, 75, 0.10);
}
.diagnostic-icon {
    font-size: 2.8rem;
    color: #f6ce4b;
    margin-bottom: 14px;
    line-height: 1;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.diagnostic-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #f6ce4b;
    line-height: 1.3;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}
.diagnostic-sub {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d0d8e0;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.diagnostic-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e6ed;
    font-weight: 300;
}
.contact-section {
    padding: 60px 40px 70px;
    background: #0d1b2a;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #f6ce4b;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.contact-subtitle {
    font-size: 1.2rem;
    color: #d0d8e0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    background: #1a2f4e;
    border-radius: 20px;
    padding: 36px 32px;
    border: 2px solid #f6ce4b;
}
.contact-name {
    font-size: 1.6rem;
    color: #f6ce4b;
    margin-bottom: 4px;
}
.contact-address {
    font-size: 1rem;
    color: #d0d8e0;
    margin-bottom: 20px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #d0d8e0;
}
.contact-detail i {
    width: 40px;
    height: 40px;
    background: #0d1b2a;
    color: #f6ce4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail a {
    color: #d0d8e0;
    font-weight: 400;
    transition: color 0.25s ease;
}
.contact-detail a:hover {
    color: #f6ce4b;
}
.contact-form {
    background: #1a2f4e;
    border-radius: 20px;
    padding: 36px 32px;
    border: 2px solid #f6ce4b;
}
.contact-form h4 {
    font-size: 1.4rem;
    color: #f6ce4b;
    margin-bottom: 20px;
    font-weight: 700;
}
.contact-form .form-group {
    margin-bottom: 16px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.9rem;
    color: #d0d8e0;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(246, 206, 75, 0.3);
    font-family: inherit;
    font-size: 1rem;
    background: #0d1b2a;
    color: #fff;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #f6ce4b;
    outline: none;
    box-shadow: 0 0 0 4px rgba(246, 206, 75, 0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7a8a9e;
}
.contact-form .btn-submit {
    background: #f6ce4b;
    color: #0d1b2a;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
    border-bottom: 3px solid #d4a830;
}
.contact-form .btn-submit:hover {
    background: #e8c03a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 206, 75, 0.25);
}
.footer {
    background: #0a1625;
    padding: 30px 40px;
    border-top: 2px solid rgba(246, 206, 75, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0cbd6;
    font-size: 0.95rem;
    transition: color 0.25s ease;
    cursor: pointer;
}
.footer-item a i {
    font-size: 1.5rem;
    color: #f6ce4b;
    transition: transform 0.25s ease;
}
.footer-item a:hover {
    color: #f6ce4b;
}
.footer-item a:hover i {
    transform: scale(1.15);
}
.footer-divider {
    width: 1px;
    height: 32px;
    background: rgba(246, 206, 75, 0.20);
}
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.box-item:nth-child(1) { animation-delay: 0.1s; }
.box-item:nth-child(2) { animation-delay: 0.2s; }
.box-item:nth-child(3) { animation-delay: 0.3s; }
.box-item:nth-child(4) { animation-delay: 0.4s; }
.box-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.6s; }
.feature-item:nth-child(7) { animation-delay: 0.8s; }
.diagnostic-item:nth-child(1) { animation-delay: 0.1s; }
.diagnostic-item:nth-child(2) { animation-delay: 0.2s; }
.diagnostic-item:nth-child(3) { animation-delay: 0.3s; }
.page-hero {
    background: #0d1b2a;
    padding: 120px 40px 60px;
    text-align: center;
    border-bottom: 3px solid #f6ce4b;
}
.page-hero h1 {
    font-size: 3rem;
    color: #f6ce4b;
    margin-bottom: 12px;
}
.page-hero h1 span {
    color: #fff;
}
.page-hero p {
    font-size: 1.2rem;
    color: #d0d8e0;
    max-width: 700px;
    margin: 0 auto;
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.offer-card {
    background: linear-gradient(180deg, #1a2f4e 0%, #0f1f33 100%);
    border: 2px solid #f6ce4b;
    border-radius: 24px;
    padding: 32px 20px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}
.offer-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 50px rgba(246, 206, 75, 0.18);
    border-color: #f8d85a;
}
.offer-icon {
    font-size: 3.4rem;
    color: #f6ce4b;
    margin-bottom: 16px;
    line-height: 1;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 206, 75, 0.08);
    border-radius: 50%;
    transition: background 0.3s ease;
}
.offer-card:hover .offer-icon {
    background: rgba(246, 206, 75, 0.18);
}
.offer-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f6ce4b;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.offer-card p {
    font-size: 0.95rem;
    color: #d0d8e0;
    line-height: 1.5;
    margin: 0;
}
.offer-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
}
.offer-card-compact {
    padding: 18px 14px 16px;
    border-radius: 16px;
}
.offer-card-compact .offer-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
}
.offer-card-compact h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.offer-card-compact p {
    font-size: 0.8rem;
}
.therapy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
}
.therapy-item {
    background: linear-gradient(180deg, #1a2f4e 0%, #0f1f33 100%);
    border: 2px solid #f6ce4b;
    border-radius: 20px;
    padding: 30px 22px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.therapy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(246, 206, 75, 0.10);
}
.therapy-icon {
    font-size: 2.8rem;
    color: #f6ce4b;
    margin-bottom: 12px;
    line-height: 1;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.therapy-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f6ce4b;
    line-height: 1.3;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.therapy-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #e0e6ed;
    font-weight: 300;
}
@media (max-width: 1200px) {
    .boxes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .diagnostic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-sub {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1.2rem;
    }
    .features-container {
        gap: 16px;
    }
    .feature-divider {
        height: 35px;
    }
    .feature-item {
        min-width: 140px;
    }
    .feature-icon {
        font-size: 1.6rem;
        width: 34px;
    }
    .feature-title {
        font-size: 0.85rem;
    }
    .feature-sub {
        font-size: 0.7rem;
    }
    .dropdown-menu {
        min-width: 200px;
    }
    .offer-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .offer-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .navbar {
        padding: 0 16px 0 100px;
        height: 78px;
    }
    .logo {
        width: 90px;
        height: 90px;
        top: 5px;
        left: 20px;
    }
    .logo-img {
        transform: scale(1.4);
    }
    .nav-item {
        font-size: 0.68rem;
        padding: 6px 8px;
    }
    .navbar-center {
        gap: 2px;
        padding: 0 8px;
    }
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.15rem;
    }
    .navbar-right {
        gap: 10px;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-sub {
        font-size: 1.8rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .diagnostic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .box-title {
        font-size: 0.9rem;
    }
    .box-title.smaller {
        font-size: 0.8rem;
    }
    .box-text {
        font-size: 0.82rem;
    }
    .box-icon {
        font-size: 2.6rem;
        width: 64px;
        height: 64px;
    }
    .footer {
        gap: 24px;
        padding: 24px 20px;
    }
    .footer-divider {
        display: none;
    }
    .features-container {
        gap: 14px;
    }
    .feature-item {
        min-width: 120px;
        gap: 10px;
    }
    .feature-icon {
        font-size: 1.4rem;
        width: 30px;
    }
    .feature-title {
        font-size: 0.8rem;
    }
    .feature-sub {
        font-size: 0.65rem;
    }
    .feature-divider {
        height: 30px;
    }
    .dropdown-menu {
        min-width: 180px;
    }
    .dropdown-menu li {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-title {
        font-size: 2.2rem;
    }
    .page-hero {
        padding: 100px 30px 40px;
    }
    .page-hero h1 {
        font-size: 2.5rem;
    }
    .offer-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 24px;
    }
    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .offer-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    .navbar {
        height: auto;
        flex-wrap: wrap;
        padding: 10px 15px;
        justify-content: center;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
    .logo {
        position: relative;
        top: 0;
        left: 0;
        width: 70px;
        height: 70px;
        margin-bottom: 5px;
    }
    .logo-img {
        transform: scale(1.3);
    }
    .navbar-center {
        gap: 0px;
        padding: 0 4px;
        flex: 1;
        overflow-x: auto;
        justify-content: center;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: 0;
        flex-wrap: wrap;
    }
    .navbar-center::-webkit-scrollbar {
        display: none;
    }
    .nav-item {
        font-size: 0.5rem;
        padding: 4px 5px;
        gap: 2px;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }
    .nav-item i {
        font-size: 0.65rem;
    }
    .dropdown-menu {
        min-width: 160px;
        left: 0;
        transform: translateX(0) scaleY(0.8);
    }
    .nav-item.has-dropdown:hover .dropdown-menu,
    .nav-item.has-dropdown.open .dropdown-menu {
        transform: translateX(0) scaleY(1);
    }
    .dropdown-menu li {
        font-size: 0.6rem;
        padding: 6px 12px;
    }
    .navbar-right {
        gap: 5px;
        flex-shrink: 0;
    }
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .lang-current-label {
        font-size: 0.7rem;
    }
    .hero {
        padding: 40px 20px;
        min-height: 70vh;
    }
    .hero-bg {
        background:
            linear-gradient(
                90deg,
                rgba(13, 27, 42, 0) 0%,
                rgba(13, 27, 42, 0.4) 25%,
                rgba(13, 27, 42, 0.85) 55%,
                #0d1b2a 100%
            ),
            url('../images/background.png') no-repeat right center / cover;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-sub {
        font-size: 1.3rem;
    }
    .hero-desc {
        font-size: 0.9rem;
    }
    .hero-full-text p {
        font-size: 0.9rem;
    }
    .btn-offer-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .boxes-section {
        padding: 40px 16px 20px;
    }
    .boxes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    .diagnostic-section {
        padding: 30px 16px 40px;
    }
    .diagnostic-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    .box-item {
        padding: 24px 18px 22px;
    }
    .box-icon {
        font-size: 2.4rem;
        width: 56px;
        height: 56px;
    }
    .box-title {
        font-size: 0.85rem;
    }
    .box-title.smaller {
        font-size: 0.75rem;
    }
    .box-text {
        font-size: 0.8rem;
    }
    .footer {
        flex-direction: column;
        gap: 14px;
        padding: 20px 16px;
    }
    .footer-item a {
        font-size: 0.85rem;
    }
    .features-section {
        padding: 8px 16px 30px;
    }
    .features-container {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .feature-item {
        justify-content: center;
        min-width: unset;
        width: 100%;
        gap: 12px;
    }
    .feature-divider {
        display: none;
    }
    .feature-icon {
        font-size: 1.5rem;
        width: 36px;
    }
    .feature-title {
        font-size: 0.9rem;
    }
    .feature-sub {
        font-size: 0.75rem;
    }
    .contact-section {
        padding: 40px 16px 50px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-info {
        padding: 24px 18px;
    }
    .contact-form {
        padding: 24px 18px;
    }
    .contact-title {
        font-size: 1.8rem;
    }
    .contact-subtitle {
        font-size: 1rem;
    }
    .page-hero {
        padding: 80px 20px 30px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
    .offer-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }
    .offer-card {
        padding: 24px 14px 20px;
    }
    .offer-icon {
        font-size: 2.8rem;
        width: 70px;
        height: 70px;
    }
    .offer-card h3 {
        font-size: 1rem;
    }
    .offer-card p {
        font-size: 0.85rem;
    }
    .therapy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    .therapy-item {
        padding: 24px 18px 22px;
    }
    .therapy-icon {
        font-size: 2.2rem;
        width: 56px;
        height: 56px;
    }
    .therapy-title {
        font-size: 0.95rem;
    }
    .therapy-text {
        font-size: 0.82rem;
    }
    .offer-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .offer-card-compact {
        padding: 14px 10px 12px;
    }
    .offer-card-compact .offer-icon {
        font-size: 1.6rem;
        width: 44px;
        height: 44px;
    }
    .offer-card-compact h3 {
        font-size: 0.8rem;
    }
    .offer-card-compact p {
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    .logo {
        width: 60px;
        height: 60px;
    }
    .logo-img {
        transform: scale(1.2);
    }
    .nav-item {
        font-size: 0.42rem;
        padding: 3px 4px;
        letter-spacing: 0;
    }
    .nav-item i {
        font-size: 0.5rem;
    }
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-sub {
        font-size: 1.1rem;
    }
    .hero-desc {
        font-size: 0.8rem;
    }
    .hero {
        padding: 30px 14px;
        min-height: 60vh;
    }
    .hero-full-text p {
        font-size: 0.85rem;
    }
    .btn-offer-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .box-icon {
        font-size: 2rem;
        width: 48px;
        height: 48px;
    }
    .diagnostic-icon {
        font-size: 2rem;
        width: 48px;
        height: 48px;
    }
    .diagnostic-title {
        font-size: 0.95rem;
    }
    .diagnostic-sub {
        font-size: 0.8rem;
    }
    .diagnostic-text {
        font-size: 0.8rem;
    }
    .features-section {
        padding: 6px 12px 24px;
    }
    .feature-item {
        gap: 10px;
    }
    .feature-icon {
        font-size: 1.3rem;
        width: 30px;
    }
    .feature-title {
        font-size: 0.8rem;
    }
    .feature-sub {
        font-size: 0.65rem;
    }
    .dropdown-menu {
        min-width: 140px;
    }
    .dropdown-menu li {
        font-size: 0.55rem;
        padding: 5px 10px;
    }
    .contact-title {
        font-size: 1.5rem;
    }
    .contact-name {
        font-size: 1.3rem;
    }
    .page-hero h1 {
        font-size: 1.6rem;
    }
    .page-hero p {
        font-size: 0.9rem;
    }
    .offer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .offer-card {
        padding: 18px 10px 16px;
    }
    .offer-icon {
        font-size: 2.2rem;
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }
    .offer-card h3 {
        font-size: 0.9rem;
    }
    .offer-card p {
        font-size: 0.75rem;
    }
    .offer-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}