/* Styles partagés des pages secondaires — repris de index.html */
:root {
            --bg-hero: #0F0E0C;
            --bg-dark: #141311;
            --bg-dark-soft: #1C1B18;
            --bg-dark-card: #1F1E1B;
            --bg: #FAF9F7;
            --bg-soft: #F3F2EF;
            --bg-muted: #EDECEA;
            --bg-card: #FFFFFF;
            --text: #141311;
            --text-secondary: #52504B;
            --text-tertiary: #7D7A73;
            --text-muted: #A8A49D;
            --text-inverse: #FAF9F7;
            --text-inverse-muted: rgba(250, 249, 247, 0.5);
            --accent: #E8612D;
            --accent-hover: #D4531F;
            --accent-light: #F27B4D;
            --accent-glow: rgba(232, 97, 45, 0.15);
            --accent-soft: rgba(232, 97, 45, 0.08);
            --teal: #2A9D8F;
            --teal-soft: rgba(42, 157, 143, 0.08);
            --purple: #8B6DB0;
            --purple-soft: rgba(139, 109, 176, 0.08);
            --blue: #4A7FB5;
            --blue-soft: rgba(74, 127, 181, 0.08);
            --gold: #D4A843;
            --gold-soft: rgba(212, 168, 67, 0.08);
            --border: rgba(20, 19, 17, 0.07);
            --border-md: rgba(20, 19, 17, 0.12);
            --border-strong: rgba(20, 19, 17, 0.18);
            --border-light: rgba(250, 249, 247, 0.08);
            --border-light-md: rgba(250, 249, 247, 0.14);
            --serif: 'DM Serif Display', Georgia, serif;
            --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
            --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
            --radius-sm: 6px;
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
        }
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; padding: 0.75rem 1.5rem; border-radius: 0 0 var(--radius) var(--radius); font-weight: 700; font-size: 0.875rem; z-index: 10000; transition: top 0.3s; }
.skip-link:focus { top: 0; }
::selection { background: var(--accent); color: white; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1400px; }
section { padding: clamp(5rem, 12vw, 8rem) 0; }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 0; transition: all 0.5s var(--ease); }
.header.scrolled { background: rgba(15, 14, 12, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 0.75rem 0; box-shadow: 0 1px 0 var(--border-light); }
.header__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo__mark { width: 40px; height: 40px; background: var(--accent); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--ease-spring); flex-shrink: 0; }
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.05); }
.logo__mark svg { width: 20px; height: 20px; color: white; }
.logo__text { font-family: var(--sans); font-size: 1.0625rem; font-weight: 700; color: var(--text-inverse); letter-spacing: -0.02em; white-space: nowrap; }
.logo__text span { color: var(--accent); }
.header .container { max-width: 1400px; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.25rem); }
.nav__list { display: flex; align-items: center; gap: clamp(0.85rem, 1.5vw, 1.75rem); }
.nav__link { font-size: 0.78125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-inverse-muted); transition: color 0.3s; position: relative; white-space: nowrap; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s var(--ease); }
.nav__link:hover { color: var(--text-inverse); }
.nav__link:hover::after { width: 100%; }
.nav__link--ia { color: var(--accent-light); background: var(--accent-glow); padding: 0.4rem 0.9rem; border-radius: 100px; border: 1px solid rgba(232, 97, 45, 0.25); }
.nav__link--ia:hover { color: var(--accent-light); background: rgba(232, 97, 45, 0.22); }
.nav__link--ia::after { display: none; }
.nav__cta { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: white; background: var(--accent); padding: 0.75rem 1.5rem; border-radius: 100px; transition: all 0.3s var(--ease); white-space: nowrap; flex-shrink: 0; }
.nav__cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.menu-toggle { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; }
.menu-toggle span { width: 100%; height: 2px; background: var(--text-inverse); border-radius: 1px; transition: all 0.3s var(--ease); }
.btn { display: inline-flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 1rem 1.75rem; border-radius: 100px; transition: all 0.35s var(--ease); }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { color: white; background: var(--accent); box-shadow: 0 4px 16px var(--accent-glow); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232, 97, 45, 0.25); }
.btn--ghost { color: var(--text-inverse); border: 1px solid var(--border-light-md); }
.btn--ghost:hover { border-color: var(--text-inverse); background: rgba(250, 249, 247, 0.05); }
.btn--ia { color: var(--accent-light); border: 1px solid rgba(232, 97, 45, 0.35); background: var(--accent-glow); }
.btn--ia:hover { border-color: var(--accent); background: rgba(232, 97, 45, 0.22); transform: translateY(-3px); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.section__label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.section-header--center .section__label { justify-content: center; }
.section__label::before { content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 1px; }
.section__title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.025em; }
.section__desc { font-size: 1.0625rem; color: var(--text-secondary); margin-top: 1rem; line-height: 1.7; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--bg-card); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.4s var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px 3px 0 0; opacity: 0; transition: opacity 0.3s var(--ease); }
.service-card:nth-child(1)::before { background: var(--accent); }
.service-card:nth-child(2)::before { background: var(--teal); }
.service-card:nth-child(3)::before { background: var(--purple); }
.service-card:nth-child(4)::before { background: var(--blue); }
.service-card:nth-child(5)::before { background: var(--gold); }
.service-card:nth-child(6)::before { background: var(--teal); }
.service-card:hover { border-color: var(--border-md); box-shadow: 0 16px 48px rgba(0,0,0,0.06); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); margin-bottom: 1.5rem; }
.service-card:nth-child(1) .service-card__icon { background: var(--accent-soft); color: var(--accent); }
.service-card:nth-child(2) .service-card__icon { background: var(--teal-soft); color: var(--teal); }
.service-card:nth-child(3) .service-card__icon { background: var(--purple-soft); color: var(--purple); }
.service-card:nth-child(4) .service-card__icon { background: var(--blue-soft); color: var(--blue); }
.service-card:nth-child(5) .service-card__icon { background: var(--gold-soft); color: var(--gold); }
.service-card:nth-child(6) .service-card__icon { background: var(--teal-soft); color: var(--teal); }
.service-card__icon svg { width: 24px; height: 24px; stroke-width: 1.75; }
.service-card__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card__desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1.25rem; line-height: 1.65; }
.service-card__list { display: flex; flex-direction: column; gap: 0.4rem; }
.service-card__item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-tertiary); font-weight: 500; }
.service-card__item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; opacity: 0.5; }
.service-card:nth-child(1) .service-card__item::before { background: var(--accent); }
.service-card:nth-child(2) .service-card__item::before { background: var(--teal); }
.service-card:nth-child(3) .service-card__item::before { background: var(--purple); }
.service-card:nth-child(4) .service-card__item::before { background: var(--blue); }
.service-card:nth-child(5) .service-card__item::before { background: var(--gold); }
.service-card:nth-child(6) .service-card__item::before { background: var(--teal); }
.contact__form { background: var(--bg-card); padding: 2.25rem; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: 0 12px 40px rgba(0,0,0,0.04); }
.form-row { margin-bottom: 1.125rem; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.4rem; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.8125rem 1rem; font-family: inherit; font-size: 0.875rem; color: var(--text); background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-card); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: white; background: var(--accent); border-radius: 100px; transition: all 0.35s var(--ease); }
.form-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.footer { background: var(--bg-dark); color: var(--text-inverse); padding: 4rem 0 1.75rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-light); }
.footer__brand p { font-size: 0.875rem; color: var(--text-inverse-muted); margin-top: 1rem; max-width: 300px; line-height: 1.65; }
.footer__brand .location-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); padding: 0.4rem 0.875rem; border-radius: 100px; margin-top: 1.25rem; border: 1px solid var(--border-light); }
.footer__brand .location-badge svg { width: 12px; height: 12px; color: var(--teal); }
.footer__heading { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.3); margin-bottom: 1.125rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__link { font-size: 0.875rem; color: var(--text-inverse-muted); transition: color 0.25s; }
.footer__link:hover { color: var(--accent-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: 1.25rem; align-items: center; }
.footer__legal-link { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.25s; white-space: nowrap; }
.footer__legal-link:hover { color: var(--accent-light); }
.footer__legal-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.footer__social { display: flex; gap: 0.625rem; }
.social-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border-light); border-radius: 50%; color: rgba(255,255,255,0.4); transition: all 0.3s var(--ease); }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; }
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 9000; background: #25D366; color: white; border-radius: 50px; padding: 14px 20px 14px 16px; display: flex; align-items: center; gap: 10px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: all 0.3s var(--ease); font-family: var(--sans); font-size: 14px; font-weight: 600; }
.whatsapp-float:hover { background: #1ebe5d; box-shadow: 0 6px 28px rgba(37,211,102,0.6); transform: translateY(-3px); }
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-label { color: white; white-space: nowrap; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.service-card .card-shine { position: absolute; inset: 0; opacity: 0; background: radial-gradient(600px circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(232,97,45,0.06), transparent 40%); transition: opacity 0.3s; pointer-events: none; z-index: 0; }
.service-card:hover .card-shine { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.btn-magnetic { transition: transform 0.2s var(--ease-spring); }
.mobile-nav { position: fixed; inset: 0; z-index: 99; background: rgba(15, 14, 12, 0.98); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav__list { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav__link { font-family: var(--serif); font-size: 2rem; color: var(--text-inverse); transition: color 0.3s; }
.mobile-nav__link:hover { color: var(--accent); }

/* =============================================
   MENU DÉROULANT (partagé avec index.html)
============================================= */
.nav__item { position: relative; }
.nav__link--has-sub { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav__link--has-sub svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }
.nav__item:hover .nav__link--has-sub svg, .nav__item:focus-within .nav__link--has-sub svg { transform: rotate(180deg); }
.nav__link--active { color: var(--text-inverse); }
.nav__link--active::after { width: 100%; }
.nav__sub { position: absolute; top: calc(100% + 0.9rem); left: 50%; min-width: 250px; padding: 0.5rem; background: rgba(20, 19, 17, 0.98); border: 1px solid var(--border-light-md); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.35); opacity: 0; visibility: hidden; transform: translate(-50%, 6px); transition: all 0.25s var(--ease); }
.nav__sub::before { content: ''; position: absolute; top: -1rem; left: 0; right: 0; height: 1rem; }
.nav__item:hover .nav__sub, .nav__item:focus-within .nav__sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__sub a { display: block; padding: 0.6rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; color: var(--text-inverse-muted); white-space: nowrap; transition: all 0.2s; }
.nav__sub a:hover, .nav__sub a:focus { color: var(--text-inverse); background: rgba(250,249,247,0.06); }
.nav__sub a strong { color: var(--accent-light); font-weight: 700; }
.nav__sub-sep { height: 1px; margin: 0.4rem 0.5rem; background: var(--border-light); }
.nav__sub-title { padding: 0.5rem 0.85rem 0.25rem; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.3); }
.mobile-nav { overflow-y: auto; align-items: flex-start; }
.mobile-nav__list { gap: 1.25rem; padding: 6rem 1.25rem 3rem; margin: auto; }
.mobile-nav__link { font-size: 1.625rem; }
.mobile-nav__sub { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; max-width: 340px; margin-top: 0.75rem; }
.mobile-nav__sub a { font-size: 0.8125rem; font-weight: 600; color: var(--text-inverse-muted); padding: 0.4rem 0.85rem; border: 1px solid var(--border-light-md); border-radius: 100px; }
.mobile-nav__sub a:hover { color: var(--accent-light); border-color: var(--accent); }
.mobile-nav__item { display: flex; flex-direction: column; align-items: center; }

/* =============================================
   PAGES DÉPANNAGE — HERO
============================================= */
.page-hero { position: relative; overflow: hidden; background: var(--bg-hero); color: var(--text-inverse); padding: clamp(8rem, 16vw, 10rem) 0 clamp(4rem, 8vw, 5.5rem); }
.page-hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 70%; height: 120%; background: radial-gradient(ellipse at center, rgba(232, 97, 45, 0.10) 0%, transparent 65%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(250,249,247,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(250,249,247,0.02) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 70%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-inverse-muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--text-inverse-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; opacity: 0.5; }
.page-hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-light); background: var(--accent-glow); padding: 0.5rem 1.125rem; border-radius: 100px; border: 1px solid rgba(232, 97, 45, 0.2); margin-bottom: 1.5rem; }
.page-hero__badge svg { width: 14px; height: 14px; }
.page-hero__title { font-family: var(--serif); font-size: clamp(2.25rem, 6vw, 3.75rem); font-weight: 400; line-height: 1.08; letter-spacing: -0.03em; max-width: 820px; margin-bottom: 1.25rem; }
.page-hero__title em { font-style: italic; color: var(--accent); }
.page-hero__desc { font-size: 1.0625rem; color: rgba(250, 249, 247, 0.7); max-width: 640px; margin-bottom: 2.25rem; }
.page-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero__points { display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem; margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.page-hero__point { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: rgba(250, 249, 247, 0.8); }
.page-hero__point svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* =============================================
   PAGES DÉPANNAGE — CONTENU
============================================= */
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: var(--text-inverse); }
.section--dark .section__label { color: var(--accent-light); }
.section--dark .section__label::before { background: var(--accent-light); }
.section--dark .section__desc { color: var(--text-inverse-muted); }
.services__grid--4 { grid-template-columns: repeat(4, 1fr); }
.service-card:nth-child(7)::before { background: var(--purple); }
.service-card:nth-child(8)::before { background: var(--blue); }
.service-card:nth-child(7) .service-card__icon { background: var(--purple-soft); color: var(--purple); }
.service-card:nth-child(8) .service-card__icon { background: var(--blue-soft); color: var(--blue); }
.service-card:nth-child(7) .service-card__item::before { background: var(--purple); }
.service-card:nth-child(8) .service-card__item::before { background: var(--blue); }
.prose { max-width: 760px; }
.prose .section__title { margin-bottom: 1.25rem; }
.prose p { color: var(--text-secondary); margin-bottom: 1.1rem; font-size: 1.0313rem; }
.prose strong { color: var(--text); }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; }
.aside-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 16px 48px rgba(0,0,0,0.05); position: sticky; top: 6.5rem; }
.aside-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 1rem; }
.aside-card p { font-size: 0.9375rem; color: var(--text-secondary); margin-bottom: 1.25rem; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.btn--outline { color: var(--text); border: 1px solid var(--border-strong); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.check-list { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.25rem 0; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9688rem; color: var(--text-secondary); }
.check-list li::before { content: ''; flex-shrink: 0; width: 20px; height: 20px; margin-top: 0.15rem; border-radius: 50%; background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A9D8F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.audience__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.audience-card { padding: 1.75rem; border-radius: var(--radius-lg); background: var(--bg-dark-soft); border: 1px solid var(--border-light); }
.audience-card__icon { font-size: 1.75rem; margin-bottom: 1rem; line-height: 1; }
.audience-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-inverse); }
.audience-card p { font-size: 0.875rem; color: var(--text-inverse-muted); line-height: 1.65; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.step { position: relative; padding: 1.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; font-family: var(--serif); font-size: 2.25rem; line-height: 1; color: var(--accent); margin-bottom: 1rem; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }
.cities__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.city-card { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.35rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.3s var(--ease); }
.city-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.city-card__name { font-weight: 700; font-size: 1.0625rem; display: flex; justify-content: space-between; align-items: center; }
.city-card__name span { color: var(--accent); transition: transform 0.3s var(--ease); }
.city-card:hover .city-card__name span { transform: translateX(4px); }
.city-card__meta { font-size: 0.8125rem; color: var(--text-tertiary); }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chip { font-size: 0.8125rem; font-weight: 500; color: var(--text-secondary); background: var(--bg-card); border: 1px solid var(--border); padding: 0.4rem 0.9rem; border-radius: 100px; }
.section--dark .chip { color: var(--text-inverse-muted); background: transparent; border-color: var(--border-light-md); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list details { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.3s; }
.faq-list details[open] { border-color: var(--border-md); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.5rem; font-weight: 700; font-size: 0.9875rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; flex-shrink: 0; font-size: 1.5rem; font-weight: 400; line-height: 1; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq-list details[open] summary { color: var(--accent); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.5rem 1.35rem; color: var(--text-secondary); font-size: 0.9375rem; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact__intro h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem; }
.contact__intro h2 em { font-style: italic; color: var(--accent); }
.contact__intro > p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.3s var(--ease); }
.contact-link:hover { border-color: var(--accent); transform: translateX(4px); }
.contact-link__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent); flex-shrink: 0; }
.contact-link__icon svg { width: 20px; height: 20px; }
.contact-link__label { display: block; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-tertiary); }
.contact-link__value { display: block; font-size: 0.9375rem; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.form-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-feedback { display: none; margin-top: 1rem; padding: 0.875rem 1.125rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; text-align: center; }
.form-feedback.is-ok { display: block; background: rgba(42,157,143,0.1); color: var(--teal); border: 1px solid rgba(42,157,143,0.25); }
.form-feedback.is-error { display: block; background: var(--accent-soft); color: var(--accent-hover); border: 1px solid rgba(232,97,45,0.25); }
.form-note { font-size: 0.75rem; color: var(--text-tertiary); margin-top: 0.85rem; text-align: center; }
.form-note a { text-decoration: underline; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1280px) {
    .nav__list, .nav__cta { display: none; }
    .menu-toggle { display: flex; }
}
@media (max-width: 1024px) {
    .services__grid, .services__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .split, .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .aside-card { position: static; }
    .audience__grid, .steps { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .services__grid, .services__grid--4, .audience__grid, .steps { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer__legal { justify-content: center; flex-wrap: wrap; }
    .whatsapp-float { bottom: 20px; right: 20px; padding: 14px; border-radius: 50%; }
    .whatsapp-label { display: none; }
}
@media (max-width: 480px) {
    .container { padding: 0 1.125rem; }
    section { padding: 4rem 0; }
    .page-hero__actions { flex-direction: column; }
    .page-hero__actions .btn { width: 100%; justify-content: center; }
    .form-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
