:root {
    --teal: #00B7C4;
    --teal-dark: #009E91;
    --teal-light: #E8FAF9;
    --yellow: #FFCC00;
    --yellow-dark: #C9A000;
    --text: #1A1A2E;
    --text2: #444460;
    --muted: #7A7A96;
    --border: #E8E8F0;
    --bg: #FFFFFF;
    --bg2: #F7F8FC;
    /* Couleurs globales */
    --chat--color-primary: #FFCC00;
    /* couleur principale */
    --chat--color-primary-shade-50: #00B7C4;
    --chat--color-primary-shade-100: #00B7C4;
    --chat--color-secondary: #00B7C4;
    --chat--color-white: #ffffff;
    --chat--color-light: #f2f4f8;
    --chat--color-dark: #00B7C4;

    /* Bulle de l'agent (bot) */
    --chat--message--bot--background: #00B7C4;
    --chat--message--bot--color: #ffffff;

    /* Bulle de l'utilisateur */
    --chat--message--user--background: var(--chat--color-primary);
    --chat--message--user--color: var(--chat--color-white);

    /* Autres éléments */
    --chat--message--pre--background: rgba(0, 0, 0, 0.05);
    --chat--toggle--background: var(--chat--color-primary);
    --chat--toggle--hover--background: var(--chat--color-primary-shade-50);
    --chat--toggle--active--background: var(--chat--color-primary-shade-100);
    --chat--toggle--color: var(--chat--color-white);
    --chat--toggle--size: 64px;
}

/* Optionnel : arrondir les bulles du bot */
.chat-window .chat-message--bot {
    border-radius: 12px !important;


}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

/* On nettoie l'ancien container */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}


.nav-logo {
    height: 45px;
    width: auto;
    display: block;
}

/* Ajustement pour mobile */
@media (max-width: 900px) {
    .nav-logo {
        height: 38px;
        /* Un poil plus petit sur téléphone */
    }
}


.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

/* Wrapper for Google Translate widget */
#translate-wrapper {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

/* Style the translate select for consistency */
#google_translate_element select {
    border-radius: 12px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text2);
    font-weight: 600;
}

/* Custom translate buttons (EN/DE/FR) */
.translate-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 10px;
}

.translate-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text2);
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.translate-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.translate-btn.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

/* Hide the default inline select while keeping the element present for Google */
#google_translate_element {
    position: relative;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* Page loader overlay - upgraded UI/UX */
.page-loader {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(6, 8, 20, 0.48);
    backdrop-filter: blur(6px) saturate(120%);
    z-index: 9999;
    transition: opacity .28s ease, visibility .28s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.loader-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 50px rgba(6, 8, 20, 0.6);
    transform: translateY(6px);
}

.loader-logo {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: block;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.42));
    animation: loader-pulse 1.2s ease-in-out infinite;
    transform-origin: 50% 50%;
}

@keyframes loader-pulse {
    0% {
        transform: scale(1);
        opacity: 0.98;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.98;
    }
}

.loader-text {
    min-width: 160px;
}

.loader-title {
    font-weight: 800;
    color: #fff;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.loader-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 3px;
}

.loader-dots {
    display: inline-flex;
    gap: 8px;
    margin-left: 6px;
    align-items: end;
}

.loader-dots span {
    display: block;
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.6;
    animation: loader-dot 0.9s infinite;
}

.loader-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.12s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes loader-dot {
    0% {
        transform: translateY(0);
        opacity: 0.55;
    }

    50% {
        transform: translateY(-4px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.55;
    }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .loader-logo,
    .loader-dots span {
        animation: none !important;
    }
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-cta {
    background: var(--teal) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 60px 100px;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 196, 180, 0.08) 0%, transparent 70%);
    top: -80px;
    right: -200px;
    pointer-events: none;
}

.hero-blob2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.07) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    border: 1px solid rgba(0, 196, 180, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--teal-dark);
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    color: var(--text);
    animation: fadeUp 0.7s ease 0.1s both;
}

h1 .accent-teal {
    color: var(--teal);
}

h1 .accent-yellow {
    color: #5a4000;
    background: var(--yellow);
    padding: 15px 20px;
    border-radius: 6px;
}

/* Décaler légèrement le mot "résultats" vers le bas pour plus d'air */
h1 .accent-yellow {
    display: inline-block;
    margin-top: 6px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.75;
    margin-top: 22px;
    max-width: 480px;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    animation: fadeUp 0.7s ease 0.3s both;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid var(--teal);
    transition: all 0.25s;
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 196, 180, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid var(--border);
    transition: all 0.25s;
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-2px);
}

.hero-visual {
    animation: fadeUp 0.8s ease 0.2s both;
}

.dashboard-preview {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}

/* La carte principale (le fond) */
.dash-card.main-chart {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.dash-header p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.big-stat {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text2);
    margin-top: 10px;
}

.mini-graph {
    margin-top: 30px;
    filter: drop-shadow(0 5px 15px rgba(0, 196, 180, 0.2));
}

/* Les cartes flottantes */
.floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    z-index: 10;
    width: max-content;
    animation: float 4s ease-in-out infinite;
}

.floating-card strong {
    font-size: 0.85rem;
    color: var(--text);
    display: block;
}

.floating-card span {
    font-size: 0.75rem;
    color: var(--muted);
}

.icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg {
    width: 18px;
}

.icon-circle.yellow {
    background: #fff9e6;
    color: var(--yellow-dark);
}

/* Positionnement des cartes */
.lead-notif {
    top: -40px;
    right: -30px;
    animation-delay: 0s;
}

.mail-notif {
    bottom: 60px;
    left: -40px;
    animation-delay: 1s;
}

.meet-notif {
    bottom: -20px;
    right: 20px;
    animation-delay: 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile */
@media (max-width: 900px) {
    .dashboard-preview {
        height: 350px;
        transform: scale(0.9);
    }

    .floating-card {
        padding: 12px 16px;
    }

    .mail-notif {
        left: 0;
    }

    .lead-notif {
        right: 0;
    }
}

.hero-card-main {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.hero-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow));
}

.hero-card-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 18px;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    animation: slideIn 0.5s ease both;
}

.flow-step:nth-child(1) {
    animation-delay: 0.4s
}

.flow-step:nth-child(2) {
    animation-delay: 0.55s
}

.flow-step:nth-child(3) {
    animation-delay: 0.7s
}

.flow-step:nth-child(4) {
    animation-delay: 0.85s
}

.flow-step:nth-child(5) {
    animation-delay: 1s
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon.teal {
    background: var(--teal-light);
}

.step-icon.yellow {
    background: rgba(255, 210, 63, 0.15);
}

.step-icon svg {
    width: 15px;
    height: 15px;
}

.step-text {
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 500;
}

.step-sub {
    font-size: 0.71rem;
    color: var(--muted);
    margin-top: 1px;
}

.step-check {
    margin-left: auto;
    width: 18px;
    height: 18px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.hero-stat {
    flex: 1;
    background: var(--bg);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.hero-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal);
}

.hero-stat-label {
    font-size: 0.67rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ===== SECTIONS ===== */
section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--teal);
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text2);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 56px;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: rgba(0, 196, 180, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon-box.teal {
    background: var(--teal-light);
}

.service-icon-box.yellow {
    background: rgba(255, 210, 63, 0.15);
}

.service-icon-box.mixed {
    background: linear-gradient(135deg, var(--teal-light), rgba(255, 210, 63, 0.1));
}

.service-icon-box svg {
    width: 22px;
    height: 22px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text2);
    line-height: 1.75;
}

/* ===== CAS D'USAGE ===== */
.usages-wrapper {
    background: var(--bg2);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 48px;
}

.usages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.usage-card {
    background: var(--bg);
    border-radius: 14px;
    padding: 22px 18px;
    border: 1px solid var(--border);
    transition: all 0.25s;
}

.usage-card:hover {
    border-color: rgba(0, 196, 180, 0.35);
    box-shadow: 0 6px 24px rgba(0, 196, 180, 0.08);
    transform: translateY(-3px);
}

.usage-bar {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: var(--teal);
    margin-bottom: 14px;
}

.usage-bar.yellow {
    background: var(--yellow);
}

.usage-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.usage-card p {
    font-size: 0.79rem;
    color: var(--muted);
    line-height: 1.65;
}

.usage-tag {
    display: inline-flex;
    margin-top: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.usage-tag.teal {
    background: var(--teal-light);
    color: var(--teal-dark);
}

.usage-tag.yellow {
    background: rgba(255, 210, 63, 0.18);
    color: var(--yellow-dark);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-big-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.about-big-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--yellow));
}

.about-mission-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 14px;
}

.about-mission-text {
    font-size: 0.92rem;
    color: var(--text2);
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

.about-value-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}

.about-value-dot.yellow {
    background: var(--yellow);
}

.about-content p {
    font-size: 0.98rem;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.chip {
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text2);
}

/* ===== CONTACT ===== */
#contact {
    text-align: center;
}

.contact-wrapper {
    background: linear-gradient(135deg, var(--teal-light) 0%, rgba(255, 210, 63, 0.07) 100%);
    border: 1px solid rgba(0, 196, 180, 0.2);
    border-radius: 28px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 196, 180, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-wrapper h2 {
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.contact-wrapper>p {
    color: var(--text2);
    font-size: 1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-yellow {
    background: var(--yellow);
    color: #5a4000;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    border: 2px solid var(--yellow);
    transition: all 0.25s;
}

.btn-yellow:hover {
    background: transparent;
    color: var(--yellow-dark);
    border-color: var(--yellow-dark);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    gap: 36px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text2);
}

.contact-item svg {
    color: var(--teal);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text2);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--teal);
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--border);
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
}

.footer-logo span {
    color: var(--teal);
}

.footer-text {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    nav {
        padding: 14px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 60px 24px;
    }

    #hero {
        padding: 110px 24px 60px;
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }



    .services-grid,
    .usages-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 24px;
    }

    .contact-wrapper {
        padding: 40px 24px;
    }

    .usages-wrapper {
        padding: 28px 18px;
    }
}