*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --burn: #bf4900;
    --burn-hover: #a33d00;
    --burn-pale: #fdf0e8;
    --burn-light: #e8926a;
    --peach: #ffc197;
    --dark: #0c0c0c;
    --dark2: #212121;
    --white: #fefefe;
    --cream: #f9f6f1;
    --muted: #7b756e;
    --border: #e6e1d8;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        "Geist",
        system-ui,
        -apple-system,
        sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
    font-family: "Geist", system-ui, sans-serif;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em;
}
h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}
h2 {
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
}
h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 700;
}
p {
    color: var(--muted);
    line-height: 1.75;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
    background: rgba(249, 246, 241, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
}
nav.scrolled {
    padding: 0.65rem 5vw;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo svg .cls-1 {
    fill: var(--burn);
}
.nav-logo svg .cls-3 {
    fill: var(--burn-hover);
}
.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark2);
    font-size: 0.87rem;
    font-weight: 400;
    transition: color 0.2s;
    letter-spacing: -0.01em;
}
.nav-links a:hover {
    color: var(--burn);
}
.nav-cta {
    background: var(--burn) !important;
    color: var(--white) !important;
    padding: 0.48rem 1.1rem;
    border-radius: 3px;
    font-weight: 500 !important;
}
.nav-cta:hover {
    background: var(--burn-hover) !important;
}
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.3rem;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    padding: 7.5rem 5vw 3rem;
    position: relative;
    overflow: hidden;
    gap: 2rem;
}
.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: var(--dark);
    z-index: 0;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-left {
    position: relative;
    z-index: 1;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--burn-pale);
    color: var(--burn);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.38rem 0.95rem;
    border-radius: 2px;
    margin-bottom: 1.3rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: 1px solid rgba(191, 73, 0, 0.2);
}
.hero-title {
    color: var(--dark);
    margin-bottom: 1.3rem;
}
.hero-title .accent {
    color: var(--burn);
}
.hero-sub {
    font-size: 1.02rem;
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    text-decoration: none;
    font-family: "Geist", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.2s;
    padding: 0.8rem 1.7rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    letter-spacing: -0.005em;
}
.btn-primary {
    background: var(--burn);
    color: var(--white);
    border-color: var(--burn);
}
.btn-primary:hover {
    background: var(--burn-hover);
    border-color: var(--burn-hover);
}
.btn-ghost {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--dark);
}
.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}
.hero-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 380px;
}
.hero-photo {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px 4px 0 0;
    display: block;
}
.hero-float-card {
    position: absolute;
    bottom: 2.5rem;
    left: -3rem;
    background: var(--white);
    padding: 1.1rem 1.4rem;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}
.hfc-n {
    font-family: "Geist", sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--burn);
    line-height: 1;
    letter-spacing: -0.04em;
}
.hfc-l {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.15rem;
}
.hero-cert {
    position: absolute;
    top: 1.5rem;
    right: -1rem;
    background: var(--burn);
    color: var(--white);
    padding: 0.6rem 0.9rem;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    box-shadow: 0 4px 16px rgba(191, 73, 0, 0.35);
}

/* ── STATS ── */
.stats-bar {
    background: var(--burn);
    padding: 2.5rem 5vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-it {
    text-align: center;
}
.stat-it .n {
    font-family: "Geist", sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
}
.stat-it .l {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* ── SECTION ── */
section {
    padding: 5.5rem 5vw;
}
.lbl {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burn);
    margin-bottom: 0.75rem;
}
.sec-title {
    color: var(--dark);
    margin-bottom: 0.9rem;
}
.sec-sub {
    max-width: 540px;
    font-size: 1rem;
    line-height: 1.8;
}

/* ── ABOUT ── */
#about {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: center;
}
.about-photos {
    position: relative;
    padding-bottom: 3rem;
}
.ab-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    display: block;
}
.ab-accent {
    position: absolute;
    bottom: 0;
    right: -1.5rem;
    width: 45%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    border: 3px solid var(--cream);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.ab-tag {
    position: absolute;
    top: 1.5rem;
    left: -1rem;
    background: var(--burn);
    color: var(--white);
    padding: 0.7rem 1.1rem;
    border-radius: 3px;
    z-index: 2;
}
.ab-tag strong {
    display: block;
    font-family: "Geist", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}
.ab-tag span {
    font-size: 0.74rem;
    opacity: 0.85;
    font-weight: 400;
}
.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.6rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.76rem;
    color: var(--dark2);
    font-weight: 400;
}
.badge.hot {
    background: var(--burn-pale);
    border-color: rgba(191, 73, 0, 0.25);
    color: var(--burn);
}

/* ── SERVICES ── */
#services {
    background: var(--dark);
}
#services .lbl {
    color: var(--peach);
}
#services .sec-title {
    color: var(--white);
}
#services .sec-sub {
    color: rgba(255, 255, 255, 0.45);
}
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 3.2rem;
}
.srv-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.28s;
}
.srv-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-3px);
}
.srv-card.star {
    background: var(--burn);
    border-color: var(--burn);
}
.srv-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    color: var(--peach);
}
.srv-card.star .srv-icon {
    background: rgba(0, 0, 0, 0.15);
    color: var(--white);
}
.srv-card h3 {
    color: var(--white);
    margin-bottom: 0.65rem;
}
.srv-card.star h3 {
    color: var(--white);
}
.srv-card p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.88rem;
    line-height: 1.7;
}
.srv-card.star p {
    color: rgba(255, 255, 255, 0.75);
}
.srv-for {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.33);
}
.srv-card.star .srv-for {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}
.srv-for strong {
    display: block;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.2rem;
}
.srv-card.star .srv-for strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ── PRICING ── */
#pricing .prc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 3.2rem;
}
.prc-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.2rem 1.8rem;
    border-radius: 4px;
    position: relative;
    transition: all 0.28s;
}
.prc-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}
.prc-card.hot {
    border: 2px solid var(--burn);
}
.pop-tag {
    position: absolute;
    top: -1px;
    right: 1.4rem;
    background: var(--burn);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.28rem 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.prc-lbl {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    color: var(--burn);
    font-weight: 600;
}
.prc-name {
    font-family: "Geist", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0.45rem 0;
    letter-spacing: -0.02em;
}
.prc-desc {
    font-size: 0.86rem;
    margin-bottom: 0.9rem;
    min-height: 48px;
}
.prc-tag {
    font-family: "Geist", sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin: 0.7rem 0;
    letter-spacing: -0.04em;
}
.prc-tag sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
}
.prc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.1rem;
}
.prc-features li {
    font-size: 0.85rem;
    color: var(--dark2);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    line-height: 1.5;
}
.prc-features li::before {
    content: "✓";
    color: var(--burn);
    font-weight: 700;
    flex-shrink: 0;
}
.prc-cta {
    margin-top: 1.7rem;
    display: block;
    text-align: center;
    padding: 0.75rem;
}

/* ── AUDIT ── */
#audit {
    background: var(--burn-pale);
}
.aud-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4.5rem;
    align-items: start;
    margin-top: 2.8rem;
    margin-bottom: 1.5rem;
}
.aud-intro p {
    margin-top: 0.9rem;
}
.aud-list {
    list-style: none;
    margin-top: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.aud-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--dark2);
}
.aud-list li::before {
    content: "→";
    color: var(--burn);
    font-weight: 700;
    flex-shrink: 0;
}
.aud-quote {
    margin-top: 1.8rem;
    padding: 1.4rem;
    background: var(--white);
    border-left: 3px solid var(--burn);
    border-radius: 0 3px 3px 0;
}
.aud-quote p {
    font-size: 0.85rem;
    color: var(--dark2);
    font-style: italic;
}
.aud-quote cite {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--burn);
    font-weight: 500;
    font-style: normal;
}
.aud-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.2rem;
}
.aud-box h3 {
    font-size: 1rem;
    margin-bottom: 1.4rem;
    color: var(--dark);
}
.fg {
    margin-bottom: 1rem;
}
.fg label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--dark2);
    margin-bottom: 0.32rem;
}
.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--border);
    background: var(--cream);
    font-family: "Geist", sans-serif;
    font-size: 0.87rem;
    color: var(--dark);
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--burn);
}
.fg textarea {
    resize: vertical;
    min-height: 85px;
}
.fr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}
.cbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.38rem;
}
.cb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--dark2);
}
.cb input {
    accent-color: var(--burn);
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.aud-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--burn);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-family: "Geist", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1.3rem;
    letter-spacing: 0.01em;
}
.aud-btn:hover {
    background: var(--burn-hover);
}
.aud-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
#audit-result {
    margin-top: 1.6rem;
    display: none;
}
.res-box {
    background: var(--cream);
    border: 1px solid var(--border);
    border-left: 4px solid var(--burn);
    padding: 1.6rem;
    border-radius: 0 3px 3px 0;
}
.res-box h4 {
    font-family: "Geist", sans-serif;
    color: var(--dark);
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
}
.res-content {
    font-size: 0.86rem;
    color: var(--dark2);
    line-height: 1.85;
    white-space: pre-wrap;
}
.res-cta {
    display: inline-block;
    margin-top: 1.3rem;
    padding: 0.65rem 1.3rem;
    background: var(--burn);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.86rem;
    border-radius: 3px;
    transition: background 0.2s;
}
.res-cta:hover {
    background: var(--burn-hover);
}
@keyframes blink {
    0%,
    80%,
    100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}
.dots span {
    animation: blink 1.4s infinite;
}
.dots span:nth-child(2) {
    animation-delay: 0.2s;
}
.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ── TESTI ── */
/* Styles alternatifs pour les avatars */
.tst-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tst-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tst-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tst-avatar-initial {
    width: 100%;
    height: 100%;
    background: var(--burn);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.tst-info {
    flex: 1;
}

.tst-info .tst-author {
    margin-top: 0;
    font-size: 1rem;
}

.tst-info .tst-q {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.tst-card .tst-text {
    margin-top: 0.5rem;
}
#testi {
    background: var(--white);
}
.tst-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-top: 2.8rem;
}
.tst-card {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 1.8rem;
    border-radius: 4px;
}
.tst-q {
    font-size: 2.2rem;
    color: var(--burn);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-weight: 800;
}
.tst-text {
    font-size: 0.88rem;
    color: var(--dark2);
    font-style: italic;
    line-height: 1.72;
}
.tst-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.84rem;
    letter-spacing: -0.01em;
}
.tst-role {
    font-size: 0.74rem;
    color: var(--muted);
    margin-top: 0.1rem;
}
.tst-empty {
    border: 2px dashed var(--border);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    font-size: 0.82rem;
    color: var(--muted);
    font-style: italic;
    gap: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

/* ── CONTACT ── */
#contact {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
#contact .lbl {
    color: var(--peach);
}
#contact .sec-title {
    color: var(--white);
}
#contact .sec-sub {
    color: rgba(255, 255, 255, 0.45);
}
.cinfo {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}
.ci {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}
.ci-ic {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-tx strong {
    display: block;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 0.12rem;
}
.ci-tx a,
.ci-tx span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.87rem;
    text-decoration: none;
    transition: color 0.2s;
}
.ci-tx a:hover {
    color: var(--burn-light);
}
.socials {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.65rem;
}
.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.82rem;
    border-radius: 3px;
    transition: all 0.2s;
}
.soc-btn:hover {
    border-color: var(--burn);
    color: var(--burn-light);
}
.cf-side h3 {
    font-family: "Geist", sans-serif;
    color: var(--white);
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.cg {
    margin-bottom: 0.9rem;
}
.cg label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.3rem;
}
.cg input,
.cg textarea,
.cg select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--white);
    font-family: "Geist", sans-serif;
    font-size: 0.87rem;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
}
.cg input:focus,
.cg textarea:focus,
.cg select:focus {
    border-color: var(--burn);
}
.cg select option {
    background: var(--dark2);
}
.cg textarea {
    resize: vertical;
    min-height: 90px;
}
.cg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}
.cf-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--burn);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-family: "Geist", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.01em;
}
.cf-submit:hover {
    background: var(--burn-hover);
}

/* ── FOOTER ── */
footer {
    background: #070707;
    padding: 1.6rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.ft-logo {
    display: flex;
    align-items: center;
}
.ft-logo svg {
    height: 30px;
    width: auto;
    opacity: 0.45;
    filter: invert(1);
}
.ft-copy {
    color: rgb(250, 245, 245);
    font-size: 0.76rem;
}
.ft-kw {
    font-size: 0.7rem;
    color: rgb(255, 255, 255);
    max-width: 420px;
    text-align: right;
}

/* ── FADE IN ── */
.fi {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.fi.v {
    opacity: 1;
    transform: translateY(0);
}
.d1 {
    transition-delay: 0.1s;
}
.d2 {
    transition-delay: 0.2s;
}
.d3 {
    transition-delay: 0.3s;
}

/* ── MOBILE ── */

/* ── BLOG ── */
#blog {
    background: var(--cream);
}
.blog-cats {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 3rem;
}
.cat-btn {
    padding: 0.42rem 1rem;
    border: 1.5px solid var(--border);
    background: transparent;
    border-radius: 2px;
    font-family: "Geist", sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}
.cat-btn:hover,
.cat-btn.active {
    background: var(--burn);
    border-color: var(--burn);
    color: var(--white);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.28s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.bc-cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    background: var(--cream-dark);
}
.bc-cover-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}
.bc-cover-placeholder svg {
    opacity: 0.3;
}
.bc-cover-placeholder span {
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
}
.bc-body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.bc-cat {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burn);
    margin-bottom: 0.6rem;
}
.bc-title {
    font-family: "Geist", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.bc-excerpt {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
}
.bc-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.bc-date {
    font-size: 0.75rem;
    color: var(--muted);
}
.bc-read {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--burn);
    letter-spacing: 0.02em;
}
.blog-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed var(--border);
    border-radius: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}
.blog-empty strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* ── ARTICLE MODAL ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 200;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}
.modal-overlay.open {
    display: flex;
}
.modal-box {
    background: var(--white);
    border-radius: 6px;
    width: 100%;
    max-width: 760px;
    padding: 3rem;
    position: relative;
    margin: auto;
}
.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.3rem;
    line-height: 1;
    padding: 0.3rem;
}
.modal-close:hover {
    color: var(--dark);
}
.modal-cat {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burn);
    margin-bottom: 0.8rem;
}
.modal-title {
    font-family: "Geist", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
}
.modal-date {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.modal-body {
    font-size: 0.95rem;
    color: var(--dark2);
    line-height: 1.85;
    white-space: pre-wrap;
}
.modal-cta-wrap {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.modal-cta-wrap p {
    font-size: 0.88rem;
    color: var(--muted);
}

@media (max-width: 880px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-cats {
        gap: 0.5rem;
    }
    .modal-box {
        padding: 2rem 1.2rem;
    }
    .modal-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 880px) {
    #hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
    }
    .hero-bg,
    .hero-right {
        display: none;
    }
    #about {
        grid-template-columns: 1fr;
    }
    .about-photos {
        height: 340px;
    }
    .ab-main {
        height: 100%;
        object-fit: cover;
    }
    .ab-accent,
    .ab-tag {
        display: none;
    }
    .srv-grid,
    .tst-grid {
        grid-template-columns: 1fr;
    }
    #pricing .prc-grid {
        grid-template-columns: 1fr;
    }
    .aud-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    #contact {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1.8rem 5vw;
        border-bottom: 1px solid var(--border);
        gap: 1.4rem;
        z-index: 99;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-burger {
        display: flex;
    }
    .fr,
    .cg-row {
        grid-template-columns: 1fr;
    }
}
/* Audit Step by Step Styles */
.audit-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.audit-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Bar */
.progress-container {
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 10px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.progress-step {
    text-align: center;
    flex: 1;
    cursor: pointer;
}

.progress-step .step-circle {
    width: 40px;
    height: 40px;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    color: var(--muted);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-step .step-label {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
}

.progress-step.active .step-circle {
    background: var(--burn);
    color: white;
    box-shadow: 0 0 0 3px rgba(191, 73, 0, 0.2);
}

.progress-step.active .step-label {
    color: var(--burn);
    font-weight: 600;
}

.progress-step.completed .step-circle {
    background: var(--burn);
    color: white;
}

.progress-step.completed .step-circle::after {
    content: "✓";
}

.progress-bar-fill {
    position: absolute;
    top: 20px;
    left: 0;
    height: 2px;
    background: var(--burn);
    transition: width 0.3s ease;
    z-index: 1;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-prev {
    background: var(--border);
    color: var(--dark2);
}

.btn-prev:hover {
    background: #d4cfc6;
}

.btn-next,
.btn-submit {
    background: var(--burn);
    color: white;
    margin-left: auto;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--burn-hover);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── SUCCESS SCREEN ── */
#audit-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1.5rem;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--burn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(191, 73, 0, 0.3);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    stroke: white;
}

#audit-success h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

#audit-success p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 380px;
    margin: 0 auto 1.8rem;
    line-height: 1.7;
}

.success-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition:
        background 0.2s,
        transform 0.2s;
}

.success-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.success-detail {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    background: var(--burn-pale);
    border-radius: 8px;
    border: 1px solid rgba(191, 73, 0, 0.15);
    font-size: 0.82rem;
    color: var(--burn);
    font-weight: 500;
}

/* Audit Block */
.audit-block {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border);
}

#audit {
    margin-bottom: 1.5rem;
}

.block-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--burn);
}

.block-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--burn);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
}

.block-title h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.3rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--dark2);
}

.radio-label input {
    cursor: pointer;
    accent-color: var(--burn);
}

.fg textarea,
.fg input,
.fg select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--dark);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s;
}

.fg textarea:focus,
.fg input:focus,
.fg select:focus {
    border-color: var(--burn);
}

.cbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.85rem;
}

.cb input {
    accent-color: var(--burn);
    width: 16px;
    height: 16px;
}

.res-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.res-cta {
    display: inline-block;
    padding: 0.7rem 1.3rem;
    background: var(--burn);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.res-cta:hover {
    background: var(--burn-hover);
    color: white;
}

.text-muted {
    color: var(--muted);
}

@media (max-width: 768px) {
    .progress-step .step-label {
        display: none;
    }
    .progress-step .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .progress-bar-fill {
        top: 15px;
    }
    .step-buttons {
        flex-direction: column;
    }
    .btn-next,
    .btn-submit {
        margin-left: 0;
    }
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    .res-actions {
        flex-direction: column;
    }
    .res-cta {
        text-align: center;
    }
}
