/* ============================================
   CL Conseil — Minimal Glass Design
   ============================================ */

:root {
    --white: #FFFFFF;
    --bg: #FAFBFC;
    --bg-alt: #F1F3F6;
    --text: #0F172A;
    --text-secondary: #64748B;
    --blue: #2563EB;
    --blue-hover: #1D4ED8;
    --blue-soft: rgba(37, 99, 235, 0.08);
    --green: #16A34A;
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-strong: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --container: 1100px;
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 200ms ease;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    width: 100%;
    outline: none;
    transition: all var(--transition);
    background: var(--glass-strong);
    backdrop-filter: blur(8px);
    color: var(--text);
}
input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-soft);
}
textarea { resize: vertical; }
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* CONTAINER */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hide-mobile { display: inline; }
@media (max-width: 767px) { .hide-mobile { display: none; } }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    text-align: center;
}
.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 20px;
}
.section-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--blue);
}
.section-title--mt { margin-top: 100px; }
.section-sub {
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
    line-height: 1.7;
}
.section-sub strong { color: var(--text); }

@media (max-width: 767px) {
    .section-title { font-size: 28px; }
    .section-sub { font-size: 15px; margin-bottom: 40px; }
    .section-title--mt { margin-top: 64px; }
}

/* BADGE */
.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    background: var(--blue-soft);
    color: var(--blue);
    border-radius: 100px;
}
.badge--green {
    background: rgba(22, 163, 74, 0.1);
    color: var(--green);
    font-size: 10px;
    padding: 3px 10px;
    margin-left: 8px;
    vertical-align: middle;
}
.badge--blue {
    background: var(--blue-soft);
    color: var(--blue);
}
.badge--small {
    font-size: 10px;
    padding: 4px 12px;
}

/* ============================================
   GLASS BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
}
.btn--primary {
    background: var(--text);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--glass {
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255,255,255,0.5);
    border-bottom-color: rgba(255,255,255,0.15);
    border-right-color: rgba(255,255,255,0.15);
    color: var(--text);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04),
                inset 0 1px 0 rgba(255,255,255,0.7),
                inset 0 -1px 0 rgba(255,255,255,0.1);
}
.btn--glass:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06),
                inset 0 1px 0 rgba(255,255,255,0.8),
                inset 0 -1px 0 rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.25);
    border-right-color: rgba(255,255,255,0.25);
}
.btn--outline {
    border: 1.5px solid rgba(0,0,0,0.12);
    color: var(--text);
    background: transparent;
    border-radius: 100px;
}
.btn--outline:hover {
    background: var(--white);
    border-color: rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.btn--lg {
    padding: 16px 36px;
    font-size: 15px;
}
.btn--full { width: 100%; }

/* AVATAR */
.avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.avatar--lg { width: 72px; height: 72px; font-size: 22px; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.header.scrolled {
    background: var(--glass-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo__cl { color: var(--blue); }
.nav { display: flex; gap: 32px; }
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.nav__link:hover { color: var(--text); }
.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    transition: color var(--transition);
    white-space: nowrap;
}
.header__phone:hover { color: var(--text); }
.header__cta {
    font-size: 13px;
    padding: 10px 22px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 767px) {
    .nav, .header__cta, .header__phone { display: none; }
    .hamburger { display: flex; }
}

/* DRAWER */
.drawer {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--glass-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.drawer.open { opacity: 1; pointer-events: all; }
.drawer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.drawer__link {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text);
    transition: color var(--transition);
}
.drawer__link:hover { color: var(--blue); }
.drawer__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--green);
}
.drawer__cta { margin-top: 8px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 6px 20px 6px 6px;
    border-radius: 100px;
}
.hero__badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}
.hero__title {
    font-family: var(--font-display);
    font-size: 68px;
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 24px;
}
.hero__title em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--blue);
}
.hero__sub {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 44px;
    line-height: 1.7;
}
.hero__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}
.hero__features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}
.hero__feature svg { color: var(--blue); }

@media (max-width: 767px) {
    .hero { padding: 120px 0 64px; }
    .hero__title { font-size: 36px; }
    .hero__sub { font-size: 16px; margin-bottom: 32px; }
    .hero__features { gap: 20px; }
    .hero__buttons { margin-bottom: 48px; }
}

/* ============================================
   MARQUEE — Flowing testimonials
   ============================================ */
.marquee-section {
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.marquee {
    overflow: hidden;
    white-space: nowrap;
}
.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: marquee-flow 30s linear infinite;
    white-space: nowrap;
}
@keyframes marquee-flow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee:hover .marquee__track {
    animation-play-state: paused;
}
.marquee__item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 0 20px;
    white-space: nowrap;
}
.marquee__item em {
    font-style: normal;
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
}
.marquee__sep {
    color: var(--blue);
    font-size: 6px;
    opacity: 0.3;
    padding: 0 4px;
}

/* ============================================
   RÉALISATIONS — Cinematic
   ============================================ */
.realisations { padding: 100px 0 0; }

/* Showcase — cinematic reveal */
.showcase {
    margin-top: 48px;
    overflow: hidden;
    padding: 0 24px 100px;
}
@media (min-width: 768px) {
    .showcase { padding: 0 40px 100px; }
}
.showcase__inner {
    border-radius: var(--radius);
    overflow: hidden;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s ease;
}
.showcase.revealed .showcase__inner {
    transform: scale(1);
    opacity: 1;
}
.showcase__img {
    width: 100%;
    display: block;
    transition: transform 8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.showcase:hover .showcase__img {
    transform: scale(1.03);
}
@media (max-width: 767px) {
    .realisations { padding: 64px 0 0; }
    .showcase { padding: 0 16px 64px; }
}

/* ============================================
   SERVICES — Accordion list
   ============================================ */
.services { padding: 100px 0; }
.services__list {
    max-width: 800px;
    margin: 0 auto 48px;
}
.svc {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}
.svc__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.svc__header:hover {
    padding-left: 8px;
}
.svc__num {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--bg-alt);
    min-width: 40px;
    transition: color 0.3s ease;
}
.svc__header:hover .svc__num,
.svc.active .svc__num {
    color: var(--blue);
}
.svc__title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    flex: 1;
    transition: color 0.3s ease;
}
.svc__header:hover .svc__title {
    color: var(--blue);
}
.svc__arrow {
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.3;
}
.svc__header:hover .svc__arrow {
    opacity: 1;
    transform: translateX(4px);
}
.svc.active .svc__arrow {
    opacity: 1;
    transform: rotate(90deg);
    color: var(--blue);
}
.svc__body {
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 60px;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc.active .svc__body {
    margin-bottom: 16px;
}
.svc__body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    padding-bottom: 24px;
    opacity: 0;
    transform: translateX(-20px);
    filter: blur(8px);
    transition: opacity 1.2s ease 0.2s, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, filter 1.4s ease 0.2s;
}
.svc.active .svc__body p {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}
.services__cta {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.services__cta p { font-size: 15px; color: var(--text-secondary); }

@media (max-width: 767px) {
    .services { padding: 64px 0; }
    .svc__header { gap: 14px; }
    .svc__num { font-size: 22px; min-width: 30px; }
    .svc__title { font-size: 15px; }
    .svc__body { padding-left: 44px; }
}

/* ============================================
   COMPARATIF — Clean minimal
   ============================================ */
.comparatif { padding: 100px 0; }
.compare-table {
    max-width: 800px;
    margin: 0 auto 24px;
    overflow: hidden;
}
.compare-table__header, .compare-table__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
}
.compare-table__header {
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-table__header .compare-table__col {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.compare-table__col--us { color: var(--blue) !important; }
.compare-table__row {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s ease;
}
.compare-table__row:hover {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin: 0 -16px;
    padding: 16px;
}
.compare-table__row:last-child { border-bottom: none; }
.compare-table__criterion, .compare-table__col {
    padding: 4px 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-table__criterion { font-weight: 600; }
.compare-table__col--bad { color: var(--text-secondary); }
.compare-table__col--good { color: var(--text); font-weight: 500; }

@media (max-width: 767px) {
    .comparatif { padding: 64px 0; }
    .compare-table__header { display: none; }
    .compare-table__row {
        grid-template-columns: 1fr;
        padding: 20px 0;
        gap: 6px;
    }
    .compare-table__criterion { padding: 0; }
    .compare-table__col { padding: 4px 0; }
    .compare-table__row:hover { margin: 0; padding: 20px 0; }
}

/* ============================================
   PROCESS — Horizontal flow
   ============================================ */
.process {
    padding: 100px 0;
    position: relative;
}
.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}
.process__step {
    text-align: center;
    position: relative;
    padding: 40px 24px;
}
.process__step-number {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--bg-alt);
    line-height: 1;
    margin-bottom: 16px;
}
.process__step .badge { margin-bottom: 16px; }
.process__step-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.process__step-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    text-align: justify;
}
/* Connector line between steps */
.process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--bg-alt);
}

@media (max-width: 767px) {
    .process { padding: 64px 0; }
    .process__grid { grid-template-columns: 1fr; gap: 8px; }
    .process__step { text-align: left; padding: 24px 0; display: flex; gap: 20px; align-items: flex-start; }
    .process__step-number { font-size: 48px; flex-shrink: 0; width: 60px; }
    .process__step:not(:last-child)::after { display: none; }
    .process__step .badge { margin-bottom: 8px; }
}

/* ============================================
   PRICING — Glass cards
   ============================================ */
.pricing { padding: 80px 0 100px; }
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.pricing__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pricing__card--premium {
    background: var(--text);
    color: var(--white);
}
.pricing__card--premium .pricing__card-sub,
.pricing__card--premium .pricing__price-label,
.pricing__card--premium .pricing__features li {
    color: rgba(255,255,255,0.6);
}
.pricing__card--premium .badge {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
.pricing__card--premium .btn--primary {
    background: var(--white);
    color: var(--text);
}
.pricing__card--premium .pricing__features li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}
.pricing__card .badge { margin-bottom: 12px; }
.pricing__card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pricing__card-sub {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.pricing__price {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing__price-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.pricing__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}
/* Toggle link */
.pricing__alt-toggle {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}
.pricing__alt-toggle:hover {
    opacity: 1;
}
.pricing__card--premium .pricing__alt-toggle {
    color: rgba(255,255,255,0.6);
}
.pricing__card--premium .pricing__alt-toggle:hover {
    color: var(--white);
}
.pricing__alt-toggle.toggled {
    opacity: 0.4;
    font-size: 11px;
}

/* Alt block - hidden by default, animated in */
.pricing__alt {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease,
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                margin 0.4s ease;
    margin-bottom: 0;
    text-align: center;
}
.pricing__alt.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}
.pricing__card--premium .pricing__alt.show {
    background: rgba(255,255,255,0.08);
}
.pricing__alt-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 4px;
}
.pricing__alt-price span {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
}
.pricing__card--premium .pricing__alt-price span {
    color: rgba(255,255,255,0.5);
}
.pricing__alt-detail {
    font-size: 12px;
    color: var(--text-secondary);
}
.pricing__card--premium .pricing__alt-detail {
    color: rgba(255,255,255,0.5);
}
.pricing__features li {
    position: relative;
    padding-left: 24px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: justify;
}
.pricing__features li::before {
    content: '';
    position: absolute;
    left: 0; top: 1px;
    width: 16px; height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}
.pricing__reassurance {
    text-align: center;
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
    margin-top: 32px;
    padding: 14px 24px;
    background: rgba(22, 163, 74, 0.06);
    border-radius: 100px;
}

@media (max-width: 1023px) {
    .pricing__grid { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 767px) {
    .pricing { padding: 64px 0; }
    .pricing__price { font-size: 40px; }
}

/* ============================================
   FAQ — Minimal
   ============================================ */
.faq { padding: 100px 0; }
.faq__list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.faq__item:last-child { border-bottom: none; }
.faq__question {
    width: 100%;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text);
}
.faq__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}
.faq__item.active .faq__chevron {
    transform: rotate(180deg);
    color: var(--blue);
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__answer p {
    padding: 0 0 22px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: justify;
}

@media (max-width: 767px) { .faq { padding: 64px 0; } }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 20px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    margin-bottom: 28px;
}
.final-cta__dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.final-cta .btn { margin-top: 8px; }
.final-cta__human {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
}
.final-cta__note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 24px;
}

@media (max-width: 767px) { .final-cta { padding: 64px 0; } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 280px;
}
.footer__heading { font-weight: 700; font-size: 13px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__nav a, .footer__legal a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    transition: color var(--transition);
}
.footer__nav a:hover, .footer__legal a:hover { color: var(--text); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.footer__bottom p { font-size: 13px; color: var(--text-secondary); }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition);
    background: var(--white);
}
.footer__social:hover { color: var(--blue); box-shadow: var(--shadow-sm); }

@media (max-width: 767px) {
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================
   MODAL — Glass
   ============================================ */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal__content {
    position: relative;
    background: var(--glass-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.modal.open .modal__content { transform: translateY(0) scale(1); }
.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    color: var(--text-secondary);
    padding: 4px;
    transition: color var(--transition);
}
.modal__close:hover { color: var(--text); }
.modal__title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 8px;
}
.modal__sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__whatsapp {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 16px;
}
.modal__whatsapp a { color: var(--blue); font-weight: 600; }
.modal__whatsapp a:hover { text-decoration: underline; }

/* ============================================
   ANIMATIONS & MOTION
   Soft, fluid, minimal
   ============================================ */

/* Hero glow follows mouse */
.hero {
    --glow-x: 0px;
    --glow-y: 0px;
}
.hero::before {
    animation: float-glow 8s ease-in-out infinite;
    transform: translateX(calc(-50% + var(--glow-x))) translateY(var(--glow-y));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes float-glow {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
    50% { transform: translateX(-50%) translateY(-30px) scale(1.05); }
}
.final-cta::before {
    animation: float-glow-bottom 10s ease-in-out infinite;
}
@keyframes float-glow-bottom {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
    50% { transform: translateX(-50%) translateY(20px) scale(1.08); }
}

/* Staggered reveals — children animate one after another */
.reveal.revealed .hero__feature,
.reveal.revealed .svc,
.reveal.revealed .process__step,
.reveal.revealed .faq__item,
.reveal.revealed .pricing__card {
    animation: stagger-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.services__list.revealed .svc:nth-child(1) { animation-delay: 0s; }
.services__list.revealed .svc:nth-child(2) { animation-delay: 0.06s; }
.services__list.revealed .svc:nth-child(3) { animation-delay: 0.12s; }
.services__list.revealed .svc:nth-child(4) { animation-delay: 0.18s; }
.services__list.revealed .svc:nth-child(5) { animation-delay: 0.24s; }
.services__list.revealed .svc:nth-child(6) { animation-delay: 0.30s; }


.process__grid .process__step:nth-child(1).revealed { transition-delay: 0s; }
.process__grid .process__step:nth-child(2).revealed { transition-delay: 0.1s; }
.process__grid .process__step:nth-child(3).revealed { transition-delay: 0.2s; }

.pricing__grid .pricing__card:nth-child(1).revealed { transition-delay: 0s; }
.pricing__grid .pricing__card:nth-child(2).revealed { transition-delay: 0.1s; }
.pricing__grid .pricing__card:nth-child(3).revealed { transition-delay: 0.2s; }

@keyframes stagger-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero badge gentle float - starts after entrance */
@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Soft icon pulse on hero features */
.hero__feature svg {
    transition: all 0.3s ease;
}
.hero__feature:hover svg {
    transform: scale(1.2);
    color: var(--blue-hover);
}

/* Buttons — subtle shine sweep on hover */
.btn--primary {
    overflow: hidden;
    position: relative;
}
.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn--primary:hover::after {
    left: 120%;
}

/* Glass button shimmer */
.btn--glass {
    overflow: hidden;
    position: relative;
}
.btn--glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}
.btn--glass:hover::after {
    left: 120%;
}

/* Showcase cards — already handled above */


/* Pricing cards — glow on hover */
.pricing__card:hover {
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08);
}
.pricing__card--premium:hover {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}


/* FAQ chevron smooth rotation */
.faq__chevron {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Compare table row highlight */
.compare-table__row {
    transition: all 0.3s ease;
}
.compare-table__row:hover .compare-table__col--good {
    color: var(--blue);
}

/* Process step numbers — color shift on hover */
.process__step:hover .process__step-number {
    color: var(--blue-soft);
    transition: color 0.4s ease;
}

/* Nav links underline animation */
.nav__link {
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--blue);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__link:hover::after {
    width: 100%;
}


/* Focused inputs enhanced glow */
input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-soft), 0 0 20px rgba(37, 99, 235, 0.06);
}

/* Header phone WhatsApp icon pulse */
.header__phone svg {
    animation: wa-pulse 3s ease-in-out infinite;
}
@keyframes wa-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Footer social icons — spin on hover */
.footer__social:hover {
    transform: rotate(8deg) scale(1.1);
}

/* ============================================
   PAGE LOAD — Orchestrated hero entrance
   ============================================ */
body { opacity: 1; }

/* Each hero element fades up with staggered delay */
.hero__title {
    opacity: 0;
    transform: translateY(40px);
    animation: hero-enter 3s cubic-bezier(0.05, 0.7, 0.1, 1) 0.3s forwards;
}
.hero__sub {
    opacity: 0;
    transform: translateY(30px);
    animation: hero-enter 2.5s cubic-bezier(0.05, 0.7, 0.1, 1) 2s forwards;
}

/* Highlight sweep */
.highlight {
    position: relative;
    color: var(--text);
    font-weight: 600;
}
.highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    right: -2px;
    height: 40%;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: highlight-sweep 1s cubic-bezier(0.16, 1, 0.3, 1) 3.5s forwards;
}
@keyframes highlight-sweep {
    to { transform: scaleX(1); }
}
.hero__buttons {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: hero-btn-enter 2.5s cubic-bezier(0.05, 0.7, 0.1, 1) 3.2s forwards;
    margin-bottom: 40px;
}
.hero__badge {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-enter 2.5s cubic-bezier(0.05, 0.7, 0.1, 1) 4s forwards;
}
.hero__feature {
    opacity: 0;
    transform: translateY(15px);
}
.hero__feature:nth-child(1) { animation: hero-enter 2s cubic-bezier(0.05, 0.7, 0.1, 1) 4.8s forwards; }
.hero__feature:nth-child(2) { animation: hero-enter 2s cubic-bezier(0.05, 0.7, 0.1, 1) 5.1s forwards; }
.hero__feature:nth-child(3) { animation: hero-enter 2s cubic-bezier(0.05, 0.7, 0.1, 1) 5.4s forwards; }

@keyframes hero-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes hero-btn-enter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero title italic word gets a subtle color sweep */
.hero__title em {
    background: linear-gradient(90deg, var(--blue), #818cf8, var(--blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: color-shift 6s ease infinite 3s;
}
@keyframes color-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Header slides down */
.header {
    opacity: 0;
    transform: translateY(-100%);
    animation: header-enter 1.5s cubic-bezier(0.05, 0.7, 0.1, 1) 6.5s forwards;
}
@keyframes header-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .testimonials__slide { animation: none; }
}
