:root {
    --ink: #122033;
    --muted: #5d6b7a;
    --line: #dce4ec;
    --surface: #ffffff;
    --surface-soft: #f5f8fb;
    --surface-strong: #edf4f8;
    --brand: #0f4c81;
    --brand-dark: #0a345d;
    --accent: #0f9f9a;
    --accent-warm: #e85d3f;
    --shadow: 0 20px 60px rgba(18, 32, 51, 0.12);
    --shadow-soft: 0 12px 36px rgba(18, 32, 51, 0.08);
    --radius: 8px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--surface);
}

body {
    color: var(--ink);
    background: var(--surface);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 88px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container,
.nav-container,
.hero-container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 228, 236, 0.85);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 30px rgba(18, 32, 51, 0.08);
}

.nav-container {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.logo-img {
    width: 172px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
}

.nav-link {
    position: relative;
    padding: 12px 14px;
    color: #253345;
    font-size: 0.96rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand);
    background: #edf6fb;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn,
.hamburger {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 8px 10px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    border-radius: var(--radius);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--brand);
    background: #edf6fb;
    border-color: #c8e5f0;
}

.flag-icon {
    font-size: 1rem;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: var(--radius);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

.hero {
    min-height: calc(100vh - 88px);
    display: flex;
    align-items: center;
    padding: 80px 0 96px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
        radial-gradient(circle at 82% 18%, rgba(15, 159, 154, 0.16), transparent 34%),
        linear-gradient(135deg, #f7fafc 0%, #e9f1f6 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 56px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--accent-warm);
}

.hero-title {
    max-width: 720px;
    font-size: clamp(3rem, 6vw, 5.9rem);
    font-weight: 800;
    line-height: 0.98;
    color: var(--ink);
}

.hero-title::after {
    content: "";
    display: block;
    width: 92px;
    height: 5px;
    margin-top: 26px;
    border-radius: var(--radius);
    background: var(--accent);
}

.hero-subtitle {
    max-width: 650px;
    margin: 28px 0 34px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.action-buttons,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-buttons {
    margin-top: 32px;
    margin-bottom: 0;
}

.section-actions {
    margin-top: 6px;
}

.cta-buttons {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 148px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: var(--brand);
    box-shadow: 0 14px 34px rgba(15, 76, 129, 0.28);
}

.btn-primary:hover {
    background: var(--brand-dark);
    box-shadow: 0 18px 42px rgba(15, 76, 129, 0.34);
}

.btn-secondary {
    color: var(--brand);
    background: #ffffff;
    border-color: #b8d4e3;
}

.btn-secondary:hover {
    border-color: var(--brand);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 680px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hero-proof span {
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-proof strong {
    display: block;
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1.1;
}

.hero-graphic {
    position: relative;
    min-height: 520px;
}

.hero-dashboard {
    position: absolute;
    inset: 58px 40px 70px 20px;
    padding: 28px;
    border: 1px solid rgba(15, 76, 129, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.dashboard-header {
    display: flex;
    gap: 8px;
    margin-bottom: 42px;
}

.dashboard-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
}

.dashboard-header span:nth-child(1) {
    background: var(--accent-warm);
}

.dashboard-header span:nth-child(2) {
    background: #f2b84b;
}

.dashboard-header span:nth-child(3) {
    background: var(--accent);
}

.dashboard-line {
    width: 76%;
    height: 14px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: #dce8ef;
}

.dashboard-line.strong {
    width: 58%;
    height: 20px;
    background: var(--brand);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.dashboard-grid span {
    min-height: 88px;
    border: 1px solid #d8e6ee;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f0f7fa);
}

.floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 186px;
    padding: 16px;
    border: 1px solid rgba(15, 76, 129, 0.12);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    font-weight: 800;
}

.card-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: var(--radius);
    background: #edf6fb;
    font-size: 1.25rem;
}

.card-1 {
    top: 24px;
    left: 0;
}

.card-2 {
    top: 210px;
    right: 0;
}

.card-3 {
    left: 50px;
    bottom: 24px;
}

section {
    scroll-margin-top: 104px;
}

.services,
.support,
.brands,
.clients,
.contact {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.services,
.brands,
.clients {
    padding: 96px 0;
    background: var(--surface);
}

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

.section-header h2,
.support h2,
.contact h2,
.consulting-text h2 {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.08;
}

.section-header p,
.support > .container > p,
.contact > .container > p,
.consulting-text > p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.08rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card,
.support-card,
.support-category,
.contact-item-large,
.contact-specialties-full,
.contact-cta,
.consulting-service,
.visual-item {
    border-radius: var(--radius);
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(18, 32, 51, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #bad5e5;
    box-shadow: var(--shadow-soft);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: var(--brand);
    border-radius: var(--radius);
    background: #edf6fb;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3,
.support-card h3,
.support-category h3,
.contact-item h4 {
    color: var(--ink);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.28;
}

.service-card p,
.support-card p {
    margin: 14px 0 20px;
    color: var(--muted);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.feature-tag,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    color: #17415d;
    border: 1px solid #c8e2ec;
    border-radius: var(--radius);
    background: #f1f8fb;
    font-size: 0.82rem;
    font-weight: 700;
}

.service-link {
    align-self: flex-start;
    margin-top: 22px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    font-weight: 800;
    text-decoration: none;
}

.service-link:hover {
    color: var(--accent-warm);
}

.consulting {
    padding: 96px 0;
    color: #ffffff;
    background: #10233a;
}

.consulting-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 56px;
    align-items: start;
}

.consulting-text h2,
.consulting-text > p {
    color: #ffffff;
}

.consulting-text > p {
    opacity: 0.82;
}

.consulting-services {
    display: grid;
    gap: 14px;
    margin: 34px 0;
}

.consulting-service {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.consulting-service h4 {
    margin-bottom: 8px;
    font-size: 1.03rem;
}

.consulting-service p {
    color: rgba(255, 255, 255, 0.76);
}

.feature-list {
    display: grid;
    gap: 10px;
    margin-bottom: 34px;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 8px;
    border-left: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    transform: rotate(-45deg);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    position: sticky;
    top: 120px;
}

.visual-item {
    min-height: 132px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 22px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.visual-icon {
    font-size: 1.7rem;
}

.support {
    padding: 96px 0;
    background: var(--surface-soft);
}

.support h2,
.support > .container > p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.support-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 56px 0 28px;
}

.support-category,
.support-card {
    border: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(18, 32, 51, 0.04);
}

.support-category {
    padding: 28px;
}

.support-category h3 {
    padding-bottom: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.support-list {
    list-style: none;
}

.support-list li {
    padding: 14px 0;
    color: var(--muted);
    border-bottom: 1px solid #edf1f4;
}

.support-list li:last-child {
    border-bottom: 0;
}

.support-list strong {
    color: var(--ink);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 32px 0 48px;
}

.support-card {
    padding: 24px;
    text-align: left;
}

.support-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: #edf6fb;
    font-size: 1.35rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat {
    padding: 24px;
    text-align: center;
    border: 1px solid #cfe0ea;
    border-radius: var(--radius);
    background: #ffffff;
}

.stat-number {
    color: var(--brand);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.brands,
.clients {
    overflow: hidden;
}

.brands-slider,
.clients-slider {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.brands-slider::before,
.brands-slider::after,
.clients-slider::before,
.clients-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 96px;
    pointer-events: none;
}

.brands-slider::before,
.clients-slider::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.brands-slider::after,
.clients-slider::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff, transparent);
}

.brands-track,
.clients-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    padding: 22px 18px;
    animation: marquee 46s linear infinite;
}

.clients-track {
    animation-duration: 38s;
}

.brands-slider:hover .brands-track,
.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

.brand-logo,
.client-logo {
    flex: 0 0 160px;
    height: 96px;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid #eef2f5;
    border-radius: var(--radius);
    background: #ffffff;
}

.client-logo {
    flex-basis: 178px;
    height: 110px;
}

.brand-logo img,
.client-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.82;
    transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.brand-logo:hover img,
.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.04);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.contact {
    padding: 96px 0 0;
    color: #ffffff;
    background: #0e1d2f;
}

.contact h2,
.contact > .container > p {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-align: center;
}

.contact > .container > p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-content-full {
    max-width: 1080px;
    margin: 56px auto 0;
}

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

.contact-item-large,
.contact-specialties-full,
.contact-cta {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.contact-item-large {
    display: flex;
    gap: 16px;
    padding: 24px;
}

.contact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    height: 46px;
    border-radius: var(--radius);
    background: rgba(15, 159, 154, 0.18);
}

.contact-item h4,
.contact-item-large h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.contact-item-large p {
    color: rgba(255, 255, 255, 0.84);
}

.contact-detail {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.56) !important;
    font-size: 0.92rem;
}

.contact-specialties-full {
    margin: 28px 0;
    padding: 26px;
    text-align: center;
}

.contact-specialties-full h4 {
    margin-bottom: 18px;
    font-size: 1.22rem;
}

.specialty-tags-full {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.contact .tag {
    color: #d7fbf7;
    border-color: rgba(15, 159, 154, 0.32);
    background: rgba(15, 159, 154, 0.16);
}

.contact-cta {
    padding: 34px;
    text-align: center;
}

.contact-cta h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
}

.contact-cta p {
    max-width: 650px;
    margin: 12px auto 24px;
    color: rgba(255, 255, 255, 0.76);
}

.contact .btn-secondary {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}

.contact .btn-secondary:hover {
    border-color: #ffffff;
}

.footer {
    margin-top: 0;
    padding: 46px 0 22px;
    color: rgba(255, 255, 255, 0.72);
    background: #091421;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
}

.footer-brand h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.35rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.footer-section h4 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1rem;
}

.footer-section ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 22px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 96px 0;
    background: var(--surface-soft);
}

.error-page .container {
    max-width: 720px;
}

.error-page h1 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
}

.error-page p:not(.hero-kicker) {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.1rem;
}

.whatsapp-float,
.social-sidebar {
    position: fixed;
    z-index: 950;
}

.whatsapp-float {
    right: 24px;
    bottom: 24px;
    transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.whatsapp-float a,
.social-link {
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.whatsapp-float a {
    width: 56px;
    height: 56px;
    background: #25d366;
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
}

.social-sidebar {
    right: 24px;
    top: 50%;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--brand);
}

.social-link.instagram {
    background: var(--accent-warm);
}

.social-link.youtube {
    background: #cf202f;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 10px;
        font-size: 0.9rem;
    }

    .hero-container,
    .consulting-content {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        min-height: 430px;
    }

    .services-grid,
    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body {
        padding-top: 72px;
    }

    .container,
    .nav-container,
    .hero-container {
        width: min(100% - 32px, var(--container));
    }

    .nav-container {
        min-height: 72px;
    }

    .logo-img {
        width: 148px;
    }

    .hamburger {
        display: inline-flex;
    }

    .language-switcher {
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        display: grid;
        gap: 4px;
        padding: 18px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        transform: translateY(-120%);
        transition: transform 220ms ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-link {
        display: flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 56px 0 70px;
    }

    .hero-title {
        font-size: clamp(2.55rem, 12vw, 4.4rem);
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        min-height: 360px;
    }

    .hero-dashboard {
        inset: 30px 14px 44px;
    }

    .floating-card {
        min-width: 154px;
        padding: 12px;
        font-size: 0.88rem;
    }

    .card-icon {
        width: 38px;
        height: 38px;
    }

    .card-1 {
        top: 0;
    }

    .card-2 {
        top: 165px;
    }

    .card-3 {
        left: 18px;
        bottom: 0;
    }

    .services,
    .consulting,
    .support,
    .brands,
    .clients,
    .contact {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .services-grid,
    .support-details,
    .support-grid,
    .stats,
    .contact-grid,
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .visual-grid {
        position: static;
    }

    .social-sidebar {
        display: none;
    }
}

@media (max-width: 560px) {
    .language-switcher {
        gap: 4px;
    }

    .lang-btn {
        padding: 7px 8px;
    }

    .action-buttons,
    .section-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-graphic {
        min-height: 330px;
    }

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

    .dashboard-grid span:nth-child(n+3) {
        display: none;
    }

    .brand-logo,
    .client-logo {
        flex-basis: 140px;
    }

    .contact-item-large {
        flex-direction: column;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .brands-track,
    .clients-track {
        animation: none !important;
    }
}
