/* BEVY+ Website - Main Stylesheet
   Version: 4.1.0
   Date: 2026-07-26 */

:root {
    --brand-navy: #1F2958;
    --brand-blue: #393EB0;
    --brand-midnight-charcoal: #22252E;
    --brand-graphite: #4A4F5A;
    --brand-cloud-gray: #E8EBEF;
    --brand-orange: #FCA538;
    --brand-green: #5EE125;
    --brand-teal: #2CA6A4;
    --brand-sky-blue: #7BAFEA;
    --brand-warm-sand: #E8D9BE;
    --brand-white: #FFFFFF;

    --brand-silver-gray: #8A8F98;

    --primary-blue: #052c3f;
    --primary-blue-dark: #04253d;
    --primary-blue-light: #07426d;

    --secondary-green: #047857;
    --accent-color: #85b0be;
    --accent-teal: #85b0be;
    --accent-orange: #ea580c;
    --bright-yellow: #fef3c7;
    --yellow-border: #f59e0b;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --success: #10b981;
    --info: #0ea5e9;
    --warning: #f59e0b;
    --danger: #ef4444;

    --background-color: #ffffff;
    --surface-color: #ffffff;
    --light-bg: var(--brand-cloud-gray);
    --heading-color: var(--brand-midnight-charcoal);

    --section-padding: 5rem;

    --font-primary: Arial, Helvetica, sans-serif;
    --font-heading: Arial, Helvetica, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--brand-graphite);
    line-height: 1.7;
    font-size: clamp(14px, 1vw, 16px);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h5 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p, li, span, a, label, input, textarea, button {
    font-family: var(--font-primary);
}

.lead      { font-size: clamp(1.125rem, 1.5vw, 1.25rem); }
.display-1 { font-size: clamp(3rem, 6vw, 6rem); }
.display-2 { font-size: clamp(2.75rem, 5.5vw, 5.5rem); }
.display-3 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.display-4 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
.display-5 { font-size: clamp(2rem, 4vw, 3rem); }

.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-weight: 800;
}

a {
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.bg-white-25 {
    background-color: rgba(255, 255, 255, 0.25);
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2000;
    padding: 0.75rem 1.25rem;
    background: var(--brand-navy);
    color: var(--brand-white);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-120%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
    color: var(--brand-white);
    outline: 3px solid var(--brand-orange);
    outline-offset: -3px;
}

.navbar-logo-img {
    height: 65px;
    width: auto;
    max-width: none;
    display: block;

    mix-blend-mode: multiply;
}

@media (max-width: 575.98px) {
    .navbar-logo-img {
        height: 55px;
    }
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-bevytec {
    background: var(--brand-cloud-gray);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 0;
}

.navbar-bevytec .navbar-nav .nav-link {
    font-weight: 700;
    color: var(--brand-blue);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.navbar-bevytec .navbar-nav .nav-link:hover,
.navbar-bevytec .navbar-nav .nav-link:focus {
    color: var(--brand-navy);
    background-color: rgba(57, 62, 176, 0.1);
    border-radius: 4px;
}

.navbar-bevytec .navbar-nav .nav-link.active,
.navbar-bevytec .navbar-nav .nav-link.active:hover,
.navbar-bevytec .navbar-nav .nav-link.active:focus {
    color: var(--brand-white);
    background-color: var(--brand-blue);
    border-radius: 4px;
    font-weight: 700;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 1rem 0;
    background: white;
}

.navbar .dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
    color: var(--gray-700);
}

.navbar .dropdown-item:hover {
    background: var(--gray-50);
    color: var(--brand-navy);
    padding-left: 1.75rem;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background: var(--brand-navy);
    color: white;
}

.navbar-toggler {
    border-color: var(--gray-900);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(5, 44, 63, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15, 23, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.breadcrumb-section {
    background: var(--gray-50);
    padding: 1rem 0;
}

.breadcrumb {
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-blue);
}

.breadcrumb-item.active {
    color: var(--gray-900);
}

.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--brand-navy);
    border-color: var(--brand-navy);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 41, 88, 0.3);
}

.btn-outline-primary {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline-primary:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--brand-white);
}

.btn-brand-cta {
    background: var(--brand-blue);
    color: var(--brand-white);
    border: 2px solid var(--brand-blue);
    font-weight: 700;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
}

.btn-brand-cta:hover,
.btn-brand-cta:focus {
    background: var(--brand-navy);
    color: var(--brand-white);
    border-color: var(--brand-navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 41, 88, 0.28);
}

.wordmark {
    color: var(--brand-navy);
    font-weight: 700;
}

.btn-lg {
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3.5vw, 2rem);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.hero-section {
    background: linear-gradient(180deg, var(--brand-white) 0%, var(--brand-white) 45%, var(--brand-cloud-gray) 100%);
    background-color: var(--brand-white);
    padding: 3rem 0 6rem;
    position: relative;
    overflow: hidden;

    display: block;

    min-height: 85vh;
}

.hero-content {
    padding-top: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, transparent 49.5%, rgba(5, 44, 63, 0.04) 49.5%, rgba(5, 44, 63, 0.04) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(5, 44, 63, 0.04) 49.5%, rgba(5, 44, 63, 0.04) 50.5%, transparent 50.5%);
    background-size: 100px 100px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo-band {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    padding: 0;
}

.hero-logo-img {
    display: block;

    max-height: 160px;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 575.98px) {
    .hero-logo-img {
        max-height: 110px;
    }
}

.hero-section h1 {
    color: var(--brand-midnight-charcoal);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section p.lead {
    color: var(--brand-midnight-charcoal);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-lead {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(123, 175, 234, 0.18), transparent 55%),
                radial-gradient(ellipse at bottom left, rgba(31, 41, 88, 0.06), transparent 55%);
    pointer-events: none;
}

.hero-tech-graphic {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-circle {
    position: absolute;
    background: rgba(31, 41, 88, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(31, 41, 88, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    font-size: 3rem;
    box-shadow: 0 8px 32px rgba(31, 41, 88, 0.10);
    animation: float 6s ease-in-out infinite;
}

.tech-circle.circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;

    color: var(--brand-orange);
}

.tech-circle.circle-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: 10%;
    animation-delay: 1s;

    color: var(--brand-green);
}

.tech-circle.circle-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 25%;
    animation-delay: 2s;
}

.tech-circle.circle-4 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;

    color: var(--brand-blue);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-20px); }
}

.evolution-banner {
    background: var(--brand-sky-blue);
    padding: 2.5rem 0;
    border-top: 4px solid var(--brand-green);
    border-bottom: 4px solid var(--brand-green);
}

.evolution-banner h3 {
    color: var(--brand-midnight-charcoal);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
}

.evolution-banner h3 i {
    color: var(--brand-orange);
}

.evolution-banner p {
    color: var(--brand-graphite);
    margin-bottom: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.solutions-section {
    background: var(--brand-white);
    padding: 5rem 0;
}

.solutions-section h2 {
    color: var(--brand-midnight-charcoal);
}

.solutions-section > .container > .text-center > p.lead {
    color: var(--brand-graphite);
}

.solution-card {
    background: white;
    border: 3px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;

    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    grid-template-areas:
        "header"
        "paragraph"
        "checklist"
        "spacer"
        "cta";
    row-gap: 1.5rem;
}

.solution-card .solution-header {
    grid-area: header;

    min-height: 0;
    margin-bottom: 0;
}

.solution-card > p.lead {
    grid-area: paragraph;

    min-height: 0;
    margin-bottom: 0;
}

.solution-card > .row.g-3 {
    grid-area: checklist;
    margin-bottom: 0;
}

.solution-card .btn:last-of-type {
    grid-area: cta;
    margin-top: 0;
}

.solution-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transform: translateY(-8px);
}

.card-atm      { border-top: 5px solid var(--brand-green); }
.card-atm:hover      { border-color: var(--brand-green); }

.card-lending  { border-top: 5px solid var(--brand-blue); }
.card-lending:hover  { border-color: var(--brand-blue); }

.card-merchant { border-top: 5px solid var(--brand-orange); }
.card-merchant:hover { border-color: var(--brand-orange); }

.card-atm .feature-item i      { color: var(--brand-green); }
.card-lending .feature-item i  { color: var(--brand-blue); }
.card-merchant .feature-item i { color: var(--brand-orange); }

.solution-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: var(--brand-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--brand-white);
}

.solution-icon-new {
    background: var(--brand-blue);
}

.solution-icon-merchant {
    background: var(--brand-orange);
}

.solution-badge {
    display: inline-block;
    background: var(--brand-teal);
    color: var(--brand-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.solution-badge-new {
    background: var(--brand-sky-blue);
    color: var(--brand-midnight-charcoal);
}

.solution-badge-partner {
    background: var(--brand-warm-sand);
    color: var(--brand-midnight-charcoal);
}

.solution-card h3 {
    color: var(--brand-midnight-charcoal);
}

.solution-card .solution-header p,
.solution-card > p.lead {
    color: var(--brand-graphite);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-700);

    line-height: 1.4;

    min-height: 46px;
}

.feature-item i {
    font-size: 1.25rem;

    line-height: 1.4;
    flex-shrink: 0;
}

.testimonial-section {
    background: white;
    padding: 5rem 0;
}

.testimonial-card {
    background: var(--brand-cloud-gray);
    border: 3px solid var(--gray-200);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -25px;
    left: 3rem;
    width: 70px;
    height: 70px;
    background: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--brand-graphite);
    line-height: 1.8;
    margin: 2rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-400);
}

.author-name {
    font-weight: 700;
    color: var(--brand-midnight-charcoal);
    font-size: 1.1rem;
}

.author-title {
    color: var(--brand-graphite);
    font-size: 0.95rem;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1030;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid var(--brand-navy);
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease,
                background-color 0.2s ease, color 0.2s ease;
    box-shadow: 0 2px 10px rgba(31, 41, 88, 0.15);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus {
    background: var(--brand-navy);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(31, 41, 88, 0.3);
    outline: none;
}

@media (max-width: 575.98px) {
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

.gpc-notice {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1050;
    max-width: 380px;
    background: var(--brand-white);
    border: 2px solid var(--brand-teal);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.gpc-notice.is-visible {
    transform: translateX(0);
}

.gpc-notice-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.gpc-notice-icon {
    color: var(--brand-teal);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.gpc-notice-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--brand-graphite);
}

.gpc-notice-link {
    color: var(--brand-blue);
    font-weight: 700;
    text-decoration: underline;
}

.gpc-notice-link:hover,
.gpc-notice-link:focus {
    color: var(--brand-navy);
}

.gpc-notice-close {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: 0.15rem;
    line-height: 1;
    flex-shrink: 0;
    cursor: pointer;
}

.gpc-notice-close:hover,
.gpc-notice-close:focus {
    color: var(--brand-navy);
}

@media (max-width: 575.98px) {
    .gpc-notice {
        top: auto;
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
        transform: translateY(120%);
    }

    .gpc-notice.is-visible {
        transform: translateY(0);
    }
}

.cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.is-visible {
    transform: translateY(0);
}

.cookie-notice-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.cookie-notice-text {
    flex: 1 1 320px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-notice-link {
    color: var(--brand-sky-blue);
    text-decoration: underline;
}

.cookie-notice-link:hover,
.cookie-notice-link:focus {
    color: var(--brand-white);
}

.cookie-notice-actions {
    display: flex;
    gap: 0.75rem;
    flex: 0 0 auto;
}

.cookie-notice-btn {
    padding: 0.6rem 1.5rem;
}

@media (max-width: 575.98px) {
    .cookie-notice .cookie-notice-inner {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        padding: 0.75rem 12px;
        gap: 0.5rem;
    }

    .cookie-notice-text {
        flex: 0 0 auto;
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .cookie-notice-actions {
        align-self: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .cookie-notice-btn {
        flex: 0 0 auto;
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
}

.back-to-top.cookie-notice-open {
    bottom: 96px;
}

@media (max-width: 575.98px) {
    .back-to-top.cookie-notice-open {
        bottom: 88px;
    }
}

.footer {
    background: var(--brand-navy);
    color: rgba(255,255,255,0.8);

    padding: 2.5rem 0;
}

.footer .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}

.footer-divider {
    margin: 0.375rem 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand h4 {
    color: white;
}

.footer-wordmark {
    color: var(--brand-white);
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.footer-legal-sep {
    color: rgba(255,255,255,0.35);
    margin: 0 0.5rem;
}

.footer-legal-item {
    white-space: nowrap;
}

.footer-legal-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.footer-legal-link:hover,
.footer-legal-link:focus {
    color: var(--brand-white);
    text-decoration: underline;
}

.footer h4,
.footer h5 {
    color: white;
}

.footer p {
    font-size: 15px;
    padding: 0;
    margin: 0 0 0.375rem 0;
}

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

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.25rem;
    min-width: 20px;
}

.footer-contact p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1199px) {
    .solution-card {
        padding: 2rem;
    }

    .solution-icon {
        width: clamp(60px, 12vw, 70px);
        height: clamp(60px, 12vw, 70px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 2rem 0 4rem;
    }

    .hero-content {
        padding-top: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .solution-header {
        flex-direction: column;

        min-height: 0;
    }

    .solution-card > p.lead {
        min-height: 0;
    }

    .solution-card {
        display: block;
    }

    .solution-card .solution-header,
    .solution-card > p.lead,
    .solution-card > .row.g-3 {
        margin-bottom: 1.5rem;
    }

    .navbar-bevytec .navbar-nav .nav-link {
        font-size: 1rem;
    }

    .hero-tech-graphic {
        display: none;
    }

    .solution-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 1.5rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p.lead {
        font-size: 1.1rem;
    }

    .solution-card {
        padding: 1.5rem;
    }

    .evolution-banner h3 {
        font-size: 1.25rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .footer .col-lg-7,
    .footer .col-lg-5 {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

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

    html {
        scroll-behavior: auto !important;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }
}
