/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Author: NH Scalar
Version: 1.0
Text Domain: hello-elementor-child
*/

/* ============================
   Font
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* ============================
   Variables – jour (défaut)
   ============================ */
:root {
    --savi-bg-page: #f5f5f7;
    --savi-bg-stripe: #ffffff;
    --savi-card-bg: #ffffff;
    --savi-card-bg-alt: #F5F5F5;
    --savi-border-soft: #e5e7eb;

    --savi-text-main: #0f172a;
    --savi-text-muted: #4b5563;
    --savi-text-soft: #6b7280;

    --savi-primary: #2563eb;
    --savi-primary-rose: #EF70CC;
    --savi-primary-soft: #eff4ff;
    --savi-gradient: linear-gradient(90deg, #f472d0 0%, #bb6bd9 44%, #67a8ff 100%);

    --savi-hero-bg: #f9fafb;
    --savi-text-button: #000000;

    --footer-bg-glass: #000000;
}

/* ============================
   Variables – mode nuit
   ============================ */
@media (prefers-color-scheme: dark) {
    :root {
        --savi-bg-page: #020617;
        --savi-bg-stripe: #0f1326;
        --savi-card-bg: #020617;
        --savi-card-bg-alt: #090c1bff;
        --savi-border-soft: #1f2937;

        --savi-text-main: #e5e7eb;
        --savi-text-muted: #cbd5f5;
        --savi-text-soft: #9ca3af;

        --savi-primary: #2563eb;
        --savi-primary-rose: #EF70CC;
        --savi-primary-soft: #eff4ff;
        --savi-gradient: linear-gradient(90deg, #f472d0 0%, #bb6bd9 44%, #67a8ff 100%);

        --savi-hero-bg: #020617;
        --savi-text-button: #000000;

        --footer-bg-glass: #000000;
    }
}

.text-center {
    text-align: center !important;
}

.margin-center {
    margin: 0 auto !important;
}

/* =====================================================
   LAYOUT GLOBAL – commun SAVI Home & SAVI Contact
   ===================================================== */

.savi-home,
.savi-contact {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--savi-bg-page);
    color: var(--savi-text-main);
}

/* Container générique */
.savi-home .container,
.savi-contact .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.savi-home .container--xl,
.savi-contact .container--xl {
    max-width: 1080px;
}

.container--xxl {
	width: 100%;
}

/* Sections */
.savi-home .section,
.savi-contact .section {
    padding: 60px 0;
}

.savi-home .section--main,
.savi-contact .section--main {
    background: var(--savi-bg-page);
}

.savi-home .section--alt,
.savi-contact .section--alt {
    background: var(--savi-bg-stripe);
}

/* Titres / textes de section */
.savi-home .section__title,
.savi-contact .section__title,
.savi-contact .band__title {
    width: fit-content;
    margin: 0 auto 0.75rem auto;
    font-size: 2.1rem;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
    background: var(--savi-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-fill-color: transparent;
	text-align: center;
}

.savi-home .section__lead,
.savi-contact .section__lead,
.savi-contact .band__lead,
.savi-contact .band__subtitle {
    margin: 20px 0 0 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--savi-text-muted);
	text-align: center;
}

.savi-home .section__lead--muted,
.savi-contact .section__lead--muted {
    color: var(--savi-text-soft);
}

.savi-home .section__header,
.savi-contact .section__header {
    text-align: left;
    margin-bottom: 32px;
}

.section__header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Eyebrow générique */
.eyebrow,
.hero__eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: var(--savi-text-soft);
    margin-bottom: 0.75rem;
	text-align: center;
}

/* Texte dégradé générique */
.gradient-text {
    background: var(--savi-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


/* =====================================================
   HERO – structure commune (HOME + CONTACT)
   ===================================================== */

/* Section hero avec image de fond */
.hero-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-bottom: none;
    color: #f9fafb;
}

/* Overlay */
.hero-header .hero__overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.75) 0%,
            rgba(15, 23, 42, 0.60) 40%,
            rgba(15, 23, 42, 0.30) 100%); */
    background: rgba(10, 25, 55, .42);
}

/* Inner = centré verticalement */
.hero-header .hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 110px 1.5rem 96px;
}

.hero-header .hero__content.hero__content--center {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.hero-header .hero__title span {
    display: block;
    font-size: 1.05rem;
    font-weight: 400;
    margin-top: 0.4rem;
    opacity: 0.9;
	text-align: center;
}

/* Contenu texte */
.hero-header .hero__content {
    max-width: 640px;
    text-align: left;
}

/* Eyebrow spécifique hero (plus clair) */
.hero-header .hero__eyebrow {
    color: #e5e7eb;
    margin-bottom: 0.9rem;
}

/* Titre hero */
.hero-header .hero__title {
    margin: 0 0 0.8rem 0;
    font-size: 3.3rem;
    line-height: 1.15;
    font-weight: 700;
    color: #f9fafb;
	text-align: center;
}

/* Sous-titre hero */
.hero-header .hero__subtitle {
    margin: 0 0 1.6rem 0;
    font-size: 1.35rem;
    line-height: 1.8;
    color: #e5e7eb;
	text-align: center;
}

/* Actions hero */
.hero-header .hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.9rem;
}

/* Note hero éventuelle */
.hero-header .hero__note {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.85);
}

/* Hero – responsive */
@media (max-width: 900px) {
    .hero-header .hero__inner {
        padding: 96px 1.5rem 72px;
    }

    .hero-header .hero__title {
        font-size: 2.2rem;
    }

    .hero-header .hero__subtitle {
        font-size: 0.98rem;
    }
}

@media (max-width: 640px) {
    .hero-header .hero__inner {
        padding: 88px 1.5rem 64px;
    }

    .hero-header .hero__content {
        max-width: 100%;
    }

    .hero-header .hero__actions {
        flex-direction: column;
    }

    .hero-header .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}


/* =====================================================
   BOUTONS – commun
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.7rem;
    /* border-radius: 10px; */
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.16s ease,
        border-color 0.18s ease;
}

.btn-primary {
    background: var(--savi-primary-rose);
    color: #ffffff;
    border: none;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    color: #FFFFFF;
}

.btn-outline {
    background: #2563EB;
    color: #FFFFFF;
}

.btn-outline:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    color: #FFFFFF;
}

.btn-lg {
    padding: 0.9rem 2.1rem;
}


/* =====================================================
   SAVI HOME – sections spécifiques
   ===================================================== */

/* Pour la section Formations : header aligné gauche */
#formations .section__header {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

#formations .section__title {
    text-align: center;
}

#formations .section__lead {
    text-align: center;
}

#formations .container {
	max-width: 100%;
	padding: 0 2rem;
}

/* Grille bénéfices */
.savi-home .benefit-grid {
    display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

@media (max-width: 960px) {
    .savi-home .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .savi-home .benefit-grid {
        grid-template-columns: 1fr;
    }
}

.savi-home .benefit-card {
    background: var(--savi-card-bg-alt);
    /* border-radius: 18px; */
    border: 1px solid var(--savi-border-soft);
    padding: 20px 20px 18px 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.savi-home .benefit-card__title {
    margin: 0 0 0.85rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--savi-text-main);
	text-align: center;
}

.savi-home .benefit-card__text {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--savi-text-muted);
	text-align: center;
}

/* Grille formations */
.savi-home .formation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 960px) {
    .savi-home .formation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .savi-home .formation-grid {
        grid-template-columns: 1fr;
    }
}

/* Carte formation */
.savi-home .formation-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 230px;
    padding: 22px 22px 18px 22px;
    /* border-radius: 22px; */
    border: 1px solid var(--savi-border-soft);
    background: var(--savi-card-bg);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    background-image: none !important;
    cursor: pointer;
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease,
        border-color 0.16s ease;
}

/* Supprimer ancien overlay */
.savi-home .formation-card__overlay {
    display: none;
}

/* Pictogramme */
.savi-home .formation-card::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--savi-primary-soft);
    display: inline-block;
    margin-bottom: 16px;
}

/* Contenu carte */
.savi-home .formation-card__content {
    position: relative;
    padding: 0;
    margin: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.savi-home .formation-card__content h3 {
    margin: 0 0 0.35rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--savi-text-main);
    background: none;
    text-shadow: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentColor;
}

.savi-home .formation-card__content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--savi-text-muted);
}

/* Bordure dégradée au hover */
.savi-home .formation-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* border-radius: 22px; */
    padding: 1px;
    background: var(--savi-gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.savi-home .formation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.savi-home .formation-card:hover::after {
    opacity: 1;
}

/* Dark mode cartes formations */
@media (prefers-color-scheme: dark) {
    .savi-home .formation-card {
        background: #0E1326;
        border-color: #1f2937;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    }

    .savi-home .formation-card::before {
        background: #0b1120;
    }

    .savi-home .formation-card__content h3 {
        color: #e5e7eb;
    }

    .savi-home .formation-card__content p {
        color: #cbd5f5;
    }

    .savi-home .formation-card:hover {
        box-shadow: 0 24px 52px rgba(15, 23, 42, 0.9);
    }
}

/* Metrics */
.savi-home .metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .savi-home .metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .savi-home .metrics {
        grid-template-columns: 1fr;
    }
}

.savi-home .metric {
    background: var(--savi-bg-page);
    /* border-radius: 18px; */
    border: 1px solid var(--savi-border-soft);
    padding: 18px 18px 16px 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.savi-home .metric__value {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.savi-home .metric__label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: var(--savi-text-muted);
}

.savi-home .metric__hint {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--savi-text-soft);
}

/* FAQ home – accordéon */
.savi-home .accordion {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.savi-home .accordion-item {
    background: var(--savi-bg-stripe);
    /* border-radius: 14px; */
    border: 1px solid var(--savi-border-soft);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.savi-home .accordion-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 14px 40px 14px 16px;
    position: relative;
    outline: none;
    display: flex;
    align-items: center;
    color: var(--savi-text-main);
}

.savi-home .accordion-item summary::-webkit-details-marker {
    display: none;
}

.savi-home .accordion-item summary::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.18s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.savi-home .accordion-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.savi-home .accordion-item__content {
    padding: 14px 16px;
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--savi-text-muted);
    border-top: 1px solid var(--savi-border-soft);
}

@media (max-width: 768px) {
    .savi-home .section {
        padding: 35px 0 60px 0;
    }

    .savi-home .hero__title {
        font-size: 2.1rem;
    }
}

/* ==============================
   CTA VIDEO SAVI
   ============================== */
.cta-video-band {
    position: relative;
    width: 100%;
    min-height: 360px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.cta-video-band .cta-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-video-band .cta-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.55);
    /* style bleu nuit léger */
    z-index: 2;
}

.cta-video-band .cta-video-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.cta-video-band .cta-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.cta-video-band .cta-subtitle {
    font-size: 1.05rem;
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.cta-video-band .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .cta-video-band {
        padding: 70px 0;
    }

    .cta-video-band .cta-title {
        font-size: 1.7rem;
    }

    .cta-video-band .cta-subtitle {
        font-size: 0.98rem;
    }

    .cta-video-band .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}



/* =====================================================
   SAVI CONTACT – sections spécifiques
   ===================================================== */

/* Intro / features / CTA */
.savi-contact .band {
    text-align: center;
}

.savi-contact .band__cta {
    margin-top: 28px;
    text-align: center;
}

/* Feature cards */
.savi-contact .feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 960px) {
    .savi-contact .feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .savi-contact .feature-cards {
        grid-template-columns: 1fr;
    }
}

.savi-contact .feature {
    background: var(--savi-card-bg-alt);
    /* border-radius: 18px; */
    border: 1px solid var(--savi-border-soft);
    padding: 20px 20px 18px 20px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.savi-contact .feature h3 {
    margin: 0 0 0.45rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--savi-text-main);
}

.savi-contact .feature p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--savi-text-muted);
}

/* Formulaire – wrapper intégré à la page */
.savi-contact .form-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Contact Form 7 – style premium */
.savi-contact .wpcf7-form {
    margin: 0;
}

/* Labels masqués (placeholders) */
.savi-contact .wpcf7-form label {
    display: none;
}

/* Champs */
.savi-contact .wpcf7-form input[type="text"],
.savi-contact .wpcf7-form input[type="email"],
.savi-contact .wpcf7-form input[type="tel"],
.savi-contact .wpcf7-form textarea {
    width: 100%;
    background: var(--savi-bg-stripe);
    border: 1px solid var(--savi-border-soft);
    padding: 16px 18px;
    font-size: 1rem;
    color: var(--savi-text-main);
    border-radius: 0;
    margin-bottom: 18px;
    transition: border-color .17s ease, background .2s ease;
}

/* Focus */
.savi-contact .wpcf7-form input:focus,
.savi-contact .wpcf7-form textarea:focus {
    border-color: #67a8ff;
    outline: none;
    background: #ffffff;
}

/* Dark mode champs */
@media (prefers-color-scheme: dark) {

    .savi-contact .wpcf7-form input[type="text"],
    .savi-contact .wpcf7-form input[type="email"],
    .savi-contact .wpcf7-form input[type="tel"],
    .savi-contact .wpcf7-form textarea {
        background: #0d1123;
        border: 1px solid #283044;
        color: #e5e7eb;
    }

    .savi-contact .wpcf7-form input:focus,
    .savi-contact .wpcf7-form textarea:focus {
        background: #11172c;
        border-color: #67a8ff;
    }
}

/* Textarea */
.savi-contact .wpcf7-form textarea {
    min-height: 200px;
    resize: vertical;
}

/* Bouton submit – carré, dégradé SAVI */
.savi-contact .wpcf7-form .wpcf7-submit {
    display: block;
    margin-left: 0;
    padding: 0.7rem 1.7rem;
    border-radius: 0;
    background: var(--savi-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .20s ease;
}

.savi-contact .wpcf7-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20);
}

/* Message RGPD sous le formulaire */
.savi-contact .rgpd {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--savi-text-soft);
}

/* LIEN dans textes */
.savi-contact .link {
    color: var(--savi-primary);
    text-decoration: none;
    font-weight: 500;
}

.savi-contact .link:hover {
    text-decoration: underline;
}

/* Timeline process */
.savi-contact .timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.savi-contact .timeline li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    position: relative;
}

.savi-contact .timeline li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 34px;
    bottom: 0;
    width: 2px;
    background: rgba(148, 163, 184, 0.6);
}

.savi-contact .timeline__num {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--savi-primary-soft);
    color: var(--savi-primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.savi-contact .timeline__body h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--savi-text-main);
}

.savi-contact .timeline__body p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--savi-text-soft);
}

/* FAQ contact – réutilise logique accordéon */
.savi-contact .accordion {
    max-width: 720px;
    margin: 0 auto;
}

.savi-contact .accordion-item {
    background: var(--savi-bg-stripe);
    /* border-radius: 14px; */
    border: 1px solid var(--savi-border-soft);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    margin-bottom: 10px;
}

.savi-contact .accordion-item summary {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.98rem;
    padding: 14px 40px 14px 16px;
    position: relative;
    outline: none;
    display: flex;
    align-items: center;
    color: var(--savi-text-main);
}

.savi-contact .accordion-item summary::-webkit-details-marker {
    display: none;
}

.savi-contact .accordion-item summary::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.18s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.savi-contact .accordion-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.savi-contact .accordion-item p {
    padding: 0 16px 14px 16px;
    font-size: 0.94rem;
    text-align: left;
    line-height: 1.65;
    color: var(--savi-text-muted);
}

@media (max-width: 768px) {
    .savi-contact .section {
        padding: 35px 0 50px 0;
    }
}


/* =====================================================
   FOOTER (global)
   ===================================================== */

.footer-as {
    background: var(--footer-bg-glass);
    color: var(--footer-brand);
    padding: 48px 0 20px 0;
    border-top: 1px solid var(--footer-border);
    box-shadow: 0 -2px 24px rgba(30, 40, 70, 0.13);
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 1.09rem;
    letter-spacing: 0;
    position: relative;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 44px 64px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-logo img {
    height: 46px;
    width: auto;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--footer-copy);
    font-size: 1.05rem;
    margin-bottom: 16px;
    opacity: .94;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-link {
    color: var(--footer-link);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0;
    transition: background .24s, color .19s;
    border-radius: 6px;
    display: inline-block;
    padding: 2px 0;
}

.footer-link:hover {
    background: var(--footer-link-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: transparent;
}

.footer-col h4 {
    font-size: 1.15rem;
    color: var(--footer-heading);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.01em;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list a {
    color: var(--footer-link);
    text-decoration: none;
    font-weight: 500;
    transition: background .24s, color .17s;
    border-radius: 5px;
    padding: 2px 0;
}

.footer-list a:hover {
    background: var(--footer-link-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: transparent;
}

.faq-sap {
    margin: 38px 0 0;
    text-align: right;
}

.faq-sap img {
    height: 52px;
    width: auto;
    filter: saturate(.94) contrast(1.07);
    opacity: .93;
}

@media (max-width: 900px) {
    .faq-sap {
        text-align: center;
        margin-top: 28px;
    }

    .footer-logo img {
        margin: 0 auto 14px auto;
    }
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    justify-content: center;
    align-items: center;
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid var(--footer-border);
    color: var(--footer-copy);
    font-size: 0.98rem;
    opacity: .82;
}

.footer-bottom a {
    color: var(--footer-link);
    text-decoration: none;
    border-radius: 5px;
    padding: 1px 5px;
    transition: background .23s, color .17s;
}

.footer-bottom a:hover {
    background: var(--footer-link-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: transparent;
}

@media (max-width: 600px) {
    .footer-as {
        padding: 38px 0 12px 0;
    }

    .wrapper {
        padding: 0 1rem;
    }

    .footer-bottom {
        margin-top: 24px;
        padding-top: 10px;
    }
}