:root {
    --logo-blue: #00AEEF;
    --logo-red: #E11B22;
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #128C7E;
    --white: #FFFFFF;
    --charcoal-grey: #2E2E2E;
    --light-grey: #F7F7F7;
    --soft-grey: #DDDDDD;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal-grey);
    background-color: var(--white);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
    word-break: break-word;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--logo-blue);
    border-radius: 20px;
    border: 2px solid var(--white);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--logo-red);
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

:focus-visible {
    outline: 3px solid var(--logo-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

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

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

h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--logo-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    color: #666;
    font-size: 1.1rem;
}

.contact-subtitle {
    max-width: none;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-light {
    background-color: var(--light-grey);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--logo-blue);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 174, 239, 0.2);
    border: 2px solid var(--logo-blue);
    cursor: pointer;
    font-size: 1rem;
}

.btn svg,
.btn i {
    flex-shrink: 0;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.btn:hover:not(:disabled) {
    background-color: var(--logo-red);
    border-color: var(--logo-red);
    box-shadow: 0 8px 25px rgba(225, 27, 34, 0.4);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn.btn-whatsapp:hover:not(:disabled) {
    background-color: var(--whatsapp-green-dark);
    border-color: var(--whatsapp-green-dark);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

header {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset;
}

body.nav-open header {
    z-index: 997;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.5) inset, 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 993px) {
    header {
        padding: 1.25rem 0;
    }
    
    header.scrolled {
        padding: 0.75rem 0;
    }
}

@media (max-width: 992px) {
    header {
        padding: 1rem 0 !important;
    }
    
    header.scrolled {
        padding: 1rem 0 !important;
    }
    
    .header-logo-text {
        font-size: 1.25rem !important;
    }
    
    header.scrolled .header-logo-text {
        font-size: 1.25rem !important;
    }
}


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

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--charcoal-grey);
    letter-spacing: -0.5px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.logo-link:hover .header-logo-text {
    color: var(--logo-red);
}

.header-tagline {
    font-size: 0.75rem;
    color: var(--logo-blue);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.3px;
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal-grey);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--logo-blue), var(--logo-red));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--logo-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-actions .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.header-actions .btn svg,
.header-actions .btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--logo-blue);
    border-color: var(--logo-blue);
}

.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-nav-toggle:hover {
    transform: scale(1.1);
}

.hamburger-icon {
    width: 28px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--charcoal-grey);
    border-radius: 3px;
    transition: all 0.3s ease;
}

body.nav-open .hamburger-icon span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

body.nav-open .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

body.nav-open .hamburger-icon span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
}

body.nav-open .mobile-nav {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
    background: var(--light-grey);
    position: relative;
    z-index: 1;
}

.mobile-nav-header .logo-area {
    align-items: flex-start;
}

.mobile-nav-header .header-logo-text {
    font-size: 1.25rem;
}

.mobile-nav-header .header-tagline {
    font-size: 0.7rem;
}

.mobile-nav-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    color: var(--charcoal-grey);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    min-width: 44px;
    min-height: 44px;
}

.mobile-nav-close *,
.mobile-nav-close svg,
.mobile-nav-close i {
    pointer-events: none !important;
}

.mobile-nav-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-nav-main {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem 1.5rem;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.4s ease forwards;
}

.mobile-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu li:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-menu li:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-menu li:nth-child(4) {
    animation-delay: 0.25s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--charcoal-grey);
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--logo-blue), var(--logo-red));
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--light-grey);
    color: var(--logo-blue);
    padding-left: 1.5rem;
}

.mobile-menu a:hover::before {
    height: 100%;
}

.mobile-nav-footer {
    padding: 1.5rem;
    margin-top: auto;
    flex-shrink: 0;
    background: var(--light-grey);
    border-top: 1px solid #eee;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

footer {
    background-color: var(--charcoal-grey);
    color: #ccc;
    padding: 4rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #444;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-brand img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    filter: brightness(1);
}

.footer-description {
    color: #999;
    line-height: 1.7;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 390px;
}

.footer-links-section {
    text-align: left;
}

.footer-contact-section {
    text-align: left;
}

.footer-links-section h4,
.footer-contact-section h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section li {
    margin-bottom: 0.75rem;
}

.footer-links-section a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links-section a:hover {
    color: var(--logo-blue);
    padding-left: 5px;
}

.footer-contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-section li {
    margin-bottom: 1.25rem;
}

.footer-contact-section a {
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-section a:hover {
    color: var(--logo-blue);
}

.footer-contact-section a i {
    color: var(--logo-blue);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.footer-social-mobile {
    display: none;
}

.footer-contact-icons-mobile {
    display: none;
}

.footer-social-section-mobile {
    display: none;
}

.footer-social-section {
    display: none;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-desktop {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--logo-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-legal a:hover {
    color: var(--logo-blue);
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    header .container {
        max-width: 1400px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    #services .grid-layout,
    #trust .grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1199px) {
    .header-actions .btn span {
        display: none;
    }
    
    .header-actions .btn {
        padding: 0.625rem 0.875rem;
    }
    
    .header-actions .btn i {
        margin: 0;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .header-tagline {
        display: none;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }
    
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        gap: 0;
    }
    
    .about-grid > .about-content:first-child {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--soft-grey);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-grid > .about-content:last-child {
        padding-left: 0;
    }
    
    .about-content h3 {
        font-size: 1.25rem;
    }
    
    .bordered-section-content {
        padding: 1.75rem;
    }
    
    .process-timeline {
        flex-direction: column !important;
        gap: 2.5rem;
        padding-top: 0 !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }
    
    .process-timeline::before {
        display: none !important;
    }
    
    .process-step {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        position: relative;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .process-icon {
        position: relative !important;
        margin: 0 auto 1.25rem !important;
        left: auto !important;
        right: auto !important;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        text-align: center !important;
    }
    
    .process-step p {
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 400px;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    #contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .footer-brand-section,
    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }
    
    .footer-brand {
        margin: 0 auto 1.25rem;
    }
    
    .footer-brand img {
        margin: 0 auto;
        max-width: 161px;
        filter: brightness(1) invert(0);
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-social-desktop {
        display: none;
    }
    
    .footer-links-section h4,
    .footer-contact-section h4 {
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .footer-links-section ul {
        display: inline-block;
        text-align: center;
        list-style: none;
        padding: 0;
    }
    
    .footer-links-section li {
        margin-bottom: 0.75rem;
    }
    
    .footer-links-section a {
        text-align: center;
        display: block;
    }
    
    .footer-contact-section ul {
        display: none;
    }
    
    .footer-contact-icons-mobile {
        display: flex;
        gap: 1.25rem;
        justify-content: center;
        align-items: center;
    }
    
    .contact-icon-link {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--logo-blue);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.05rem;
        flex-shrink: 0;
        position: relative;
    }
    
    .contact-icon-link i,
    .contact-icon-link .fas {
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .contact-icon-link:hover {
        background: var(--logo-blue);
        color: var(--white);
        transform: translateY(-3px);
    }
    
    .footer-social-section-mobile {
        display: block;
        text-align: center;
    }
    
    .footer-social-section-mobile h4 {
        font-family: var(--font-heading);
        color: var(--white);
        font-size: 1rem;
        margin-bottom: 1.25rem;
        font-weight: 700;
        text-align: center;
    }
    
    .footer-social-links-mobile {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .footer-social-links-mobile .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        order: 2;
    }
    
    .footer-legal {
        order: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
    
    .footer-social-mobile {
        display: none;
    }
}

@media (max-width: 640px) {
    header {
        padding: 0.875rem 0 !important;
    }
    
    header.scrolled {
        padding: 0.875rem 0 !important;
    }
    
    .header-logo-text {
        font-size: 1.15rem !important;
    }
    
    header.scrolled .header-logo-text {
        font-size: 1.15rem !important;
    }
    
    .header-tagline {
        font-size: 0.7rem !important;
    }
    
    header.scrolled .header-tagline {
        font-size: 0.7rem !important;
    }
    
    .mobile-nav {
        max-width: 100%;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 0 !important;
    }
    
    header.scrolled {
        padding: 0.75rem 0 !important;
    }
    
    .header-logo-text {
        font-size: 1.1rem !important;
    }
    
    header.scrolled .header-logo-text {
        font-size: 1.1rem !important;
    }
    
    .header-tagline {
        font-size: 0.65rem !important;
    }
    
    header.scrolled .header-tagline {
        font-size: 0.65rem !important;
    }
    
    .hamburger-icon {
        width: 24px;
        height: 18px;
    }
    
    .hamburger-icon span {
        height: 2.5px;
    }
    
    body.nav-open .hamburger-icon span:nth-child(1) {
        transform: translateY(7.75px) rotate(45deg);
    }
    
    body.nav-open .hamburger-icon span:nth-child(3) {
        transform: translateY(-7.75px) rotate(-45deg);
    }
    
    .mobile-nav-header {
        padding: 1rem 1.25rem;
    }
    
    .mobile-nav-header .header-logo-text {
        font-size: 1.1rem;
    }
    
    .mobile-nav-main {
        padding: 1.5rem 1.25rem;
    }
    
    .mobile-menu a {
        font-size: 1.1rem;
        padding: 0.875rem 1rem;
    }
    
    .mobile-nav-footer {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .bordered-section-content {
        padding: 1.25rem;
    }
    
    .about-content p {
        font-size: 0.95rem;
    }
    
    .process-timeline {
        gap: 2rem;
    }
    
    .process-icon {
        width: 46px;
        height: 46px;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    footer {
        padding: 2rem 0 0;
    }
    
    .footer-main {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-brand img {
        max-width: 130px;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .contact-icon-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-bottom {
        padding: 1.25rem 0 1rem;
        gap: 1rem;
    }
    
    .footer-legal {
        gap: 0.75rem;
    }
}

@media (max-width: 360px) {
    .header-logo-text {
        font-size: 1rem;
    }
    
    .mobile-nav-header .header-logo-text {
        font-size: 1rem;
    }
    
    .mobile-menu a {
        font-size: 1rem;
        padding: 0.75rem 0.875rem;
    }
    
    .container {
        padding: 0 0.875rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mobile-nav {
        max-width: 360px;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .mobile-nav-main {
        padding: 1rem 1.5rem;
    }
    
    .mobile-menu a {
        padding: 0.75rem 1.25rem;
        font-size: 1.1rem;
    }
    
    .mobile-nav-footer {
        padding: 1rem 1.5rem;
    }
}
