/* Unique Paper Products — Production CSS
   - Light theme only
   - Performance-first (system fonts, minimal heavy effects)
   - Accessible defaults
*/

:root {
    /* Colors */
    --bg: #ffffff;
    --surface: #f7f8fb;
    --surface-2: #eef1f7;
    --text: #0b1220;
    --muted: #4b5568;
    --muted-2: #667085;
    --border: #d9dee8;
    --border-2: #c9d1df;
    --shadow: 0 12px 30px rgba(11, 18, 32, .10);
    --shadow-2: 0 8px 20px rgba(11, 18, 32, .08);

    /* Brand (industrial red + graphite) */
    --brand: #d8242a;
    --brand-2: #b61c21;
    --ink: #121826;
    --success: #0e8f5a;
    --warning: #b45309;

    /* Typographic scale */
    --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    --fs-0: clamp(.92rem, .25vw + .88rem, 1rem);
    --fs-1: clamp(1.05rem, .35vw + 1rem, 1.15rem);
    --fs-2: clamp(1.25rem, .7vw + 1.05rem, 1.5rem);
    --fs-3: clamp(1.6rem, 1.4vw + 1.2rem, 2.2rem);
    --fs-4: clamp(2.1rem, 2.6vw + 1.5rem, 3.1rem);

    --lh: 1.6;

    /* Layout */
    --container: 1180px;
    --gutter: clamp(16px, 3vw, 28px);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 22px;

    /* Motion */
    --ease: cubic-bezier(.2, .8, .2, 1);
    --ease-2: cubic-bezier(.16, 1, .3, 1);
    --dur-1: 180ms;
    --dur-2: 280ms;
    --dur-3: 520ms;

    /* Header heights */
    --header-h: 76px;
    --header-h-sm: 66px;

    /* Focus */
    --focus: 0 0 0 3px rgba(216, 36, 42, .18);
}

* {
    box-sizing: border-box;
    min-width: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: var(--lh);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    overflow-wrap: anywhere;
}

html,
body {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: var(--fs-0);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: var(--text);
}

h1 {
    font-size: var(--fs-4);
}

h2 {
    font-size: var(--fs-3);
}

h3 {
    font-size: var(--fs-2);
}

small {
    color: var(--muted-2);
}

:where(button, [role="button"], input, select, textarea, a) {
    outline: none;
}

:where(button, [role="button"], input, select, textarea, a):focus-visible {
    box-shadow: var(--focus);
    border-radius: 12px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 12px;
    border-radius: 12px;
    z-index: 9999;
}

.skip-link:focus {
    left: 12px;
}

.container {
    width: 100%;
    max-width: var(--container);
    padding: 0 var(--gutter);
    margin: 0 auto;
}

.section {
    padding: clamp(44px, 6vw, 84px) 0;
}

.section--tight {
    padding: clamp(34px, 5vw, 64px) 0;
}

.surface {
    background: var(--surface);
}

.surface-2 {
    background: var(--surface-2);
}

.grid {
    display: grid;
    gap: clamp(14px, 2vw, 24px);
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 960px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.spread {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(11, 18, 32, .04);
    overflow: hidden;
}

.card__body {
    padding: 18px;
}

@media (min-width: 960px) {
    .card__body {
        padding: 22px;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* padding: 8px 12px; */
    padding: 5px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: saturate(180%) blur(6px);
    font-size: .92rem;
    color: var(--muted);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink);
}

.kicker::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--brand);
    box-shadow: 0 0 0 3px rgba(216, 36, 42, .14);
    animation: kicker-pulse 2.4s ease-out infinite;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* padding: 12px 16px; */
    padding: 5px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    user-select: none;
    transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease), background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
    will-change: transform;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    color: #fff;
    box-shadow: 0 10px 18px rgba(216, 36, 42, .16);
}

.btn--primary:hover {
    box-shadow: 0 14px 26px rgba(216, 36, 42, .20);
    transform: translateY(-1px);
}

.btn--ghost {
    background: rgba(255, 255, 255, .72);
    border-color: var(--border);
    color: var(--ink);
}

.btn--ghost:hover {
    border-color: var(--border-2);
    box-shadow: var(--shadow-2);
    transform: translateY(-1px);
}

.btn--link {
    padding: 10px 0;
    border: none;
    background: transparent;
    color: var(--brand-2);
    font-weight: 700;
}

.btn--link:hover {
    text-decoration: underline;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(216, 36, 42, .08);
    color: var(--brand-2);
    border: 1px solid rgba(216, 36, 42, .18);
    font-weight: 700;
    font-size: .86rem;
}

.icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex: 0 0 auto;
    color: currentColor;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    transition: background var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), backdrop-filter var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ink), #2a3347);
    position: relative;
    overflow: hidden;
}

.brand__mark::after {
    content: "";
    position: absolute;
    inset: -10px -18px auto auto;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(216, 36, 42, .95), rgba(216, 36, 42, .20));
    transform: rotate(18deg);
    border-radius: 14px;
}

.brand__name {
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--text);
    line-height: 1.05;
}

.brand__tag {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav a {
    position: relative;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    font-size: .98rem;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background var(--dur-2) var(--ease), color var(--dur-2) var(--ease);
}

.nav a:hover {
    background: rgba(255, 255, 255, .14);
}

.site-header[data-state="scrolled"] .nav a {
    color: var(--ink);
}

.site-header[data-state="scrolled"] .nav a:hover {
    background: rgba(11, 18, 32, .06);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-wrap: wrap;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .10);
    cursor: pointer;
    transition: background var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}

.site-header[data-state="scrolled"] .nav-toggle {
    border-color: var(--border);
    background: rgba(11, 18, 32, .03);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, .14);
}

.site-header[data-state="scrolled"] .nav-toggle:hover {
    background: rgba(11, 18, 32, .06);
}

.burger {
    width: 18px;
    height: 12px;
    position: relative;
}

.burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform var(--dur-2) var(--ease), top var(--dur-2) var(--ease), opacity var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}

.burger span:nth-child(1) {
    top: 0;
}

.burger span:nth-child(2) {
    top: 5px;
}

.burger span:nth-child(3) {
    top: 10px;
}

.site-header[data-state="scrolled"] .burger span {
    background: var(--ink);
}

body.nav-open .burger span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

body.nav-open .burger span:nth-child(2) {
    opacity: 0;
}

body.nav-open .burger span:nth-child(3) {
    top: 5px;
    transform: rotate(-45deg);
}

.site-header[data-state="overlay"] {
    background: transparent;
}

.site-header[data-state="scrolled"] {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 10px 30px rgba(11, 18, 32, .12);
}

/* Mobile nav panel */
.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-nav__inner {
    padding: 14px var(--gutter) 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav a {
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--ink);
    border: 1px solid transparent;
}

.mobile-nav a:hover {
    background: rgba(11, 18, 32, .05);
    border-color: var(--border);
}

.mobile-nav .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
}

body.nav-open .mobile-nav {
    display: block;
}

@media (max-width: 980px) {
    .nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 520px) {
    .site-header {
        height: var(--header-h-sm);
    }

    .mobile-nav {
        inset: var(--header-h-sm) 0 auto 0;
    }

    .brand__tag {
        display: none;
    }

    .header-actions .action-chip,
    .header-cta {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    padding-top: calc(var(--header-h) + clamp(26px, 6vw, 64px));
    padding-bottom: clamp(44px, 7vw, 84px);
    overflow: hidden;
    color: #fff;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 500px at 20% 10%, rgba(255, 255, 255, .18), transparent 55%),
        radial-gradient(900px 500px at 70% 20%, rgba(216, 36, 42, .25), transparent 60%),
        linear-gradient(135deg, #0b1220 0%, #141f35 52%, #0b1220 100%);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: auto -20% -50% -20%;
    height: 70%;
    background: radial-gradient(closest-side, rgba(216, 36, 42, .22), transparent 70%);
    filter: blur(4px);
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(18px, 4vw, 38px);
    align-items: center;
}

@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }
}

.hero h1 {
    color: #fff;
}

.hero p {
    color: rgba(255, 255, 255, .86);
    font-size: var(--fs-1);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
}

.hero__panel {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.hero__panel-inner {
    padding: 18px;
}

.hero__metric {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero__metric:first-child {
    border-top: none;
    padding-top: 0;
}

.hero__metric strong {
    display: block;
    font-size: 1.45rem;
    letter-spacing: -.02em;
}

.hero__metric span {
    display: block;
    /* color: rgba(255, 255, 255, .78); */
    font-size: .95rem;
}

/* Trust bar */
.trustbar {
    margin-top: -28px;
    position: relative;
}

.trustbar .card {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.trustbar__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.trustbar__item {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
}

.trustbar__item b {
    display: block;
    color: var(--ink);
}

.trustbar__item small {
    display: block;
    margin-top: 4px;
}

@media (max-width: 960px) {
    .trustbar__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .trustbar__items {
        grid-template-columns: 1fr;
    }
}

/* Section headings */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-head p {
    margin: 8px 0 0;
    max-width: 58ch;
}

.section-head__right {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 760px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Feature list */
.feature {
    display: flex;
    gap: 12px;
}

.feature .icon {
    width: 22px;
    height: 22px;
    color: var(--brand-2);
}

.feature b {
    display: block;
    color: var(--ink);
}

.feature small {
    display: block;
    margin-top: 4px;
}

/* Timeline */
.timeline {
    position: relative;
}

.timeline__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
}

.timeline__step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stepdot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(216, 36, 42, .12);
}

.timeline__item h3 {
    font-size: 1.1rem;
}

.timeline__item p {
    margin: 6px 0 0;
}

@media (max-width: 760px) {
    .timeline__item {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.quote {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote__text {
    font-size: 1.02rem;
    color: var(--ink);
}

.quote__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e5e7eb, #f9fafb);
    border: 1px solid var(--border);
}

/* FAQ */
.faq {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.faq details {
    border-top: 1px solid var(--border);
}

.faq details:first-child {
    border-top: none;
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 16px;
    font-weight: 800;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary .chev {
    width: 18px;
    height: 18px;
    transition: transform var(--dur-2) var(--ease);
}

.faq details[open] summary .chev {
    transform: rotate(180deg);
}

.faq .faq__body {
    padding: 0 16px 16px;
    color: var(--muted);
}

/* CTA band */
.cta-band {
    background:
        radial-gradient(900px 400px at 20% 30%, rgba(216, 36, 42, .12), transparent 60%),
        linear-gradient(180deg, #ffffff, #f7f8fb);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-band__inner h2 {
    font-size: clamp(1.5rem, 1.8vw + 1rem, 2.2rem);
}

.cta-band__inner p {
    margin: 8px 0 0;
}

@media (max-width: 860px) {
    .cta-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer */
.site-footer {
    padding: 44px 0 26px;
    background: #0b1220;
    color: rgba(255, 255, 255, .88);
}

/* .site-footer a {
    color: rgba(255, 255, 255, .88);
} */

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer h3 {
    color: #fff;
    font-size: 1.05rem;
}

.site-footer p,
.site-footer small {
    color: rgba(255, 255, 255, .72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 22px;
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.map-placeholder {
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .06);
    height: 170px;
}

/* Forms */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-weight: 800;
    color: var(--ink);
    font-size: .95rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    font: inherit;
    color: var(--ink);
    transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #9aa3b2;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(216, 36, 42, .45);
    box-shadow: var(--focus);
}

.form-help {
    font-size: .86rem;
    color: var(--muted-2);
}

.form-error {
    display: none;
    font-size: .86rem;
    color: #b42318;
    font-weight: 700;
}

.field[data-error="true"] .form-error {
    display: block;
}

.field[data-error="true"] :where(input, select, textarea) {
    border-color: rgba(180, 35, 24, .55);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, .12);
}

.notice {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
}

.notice--success {
    border-color: rgba(14, 143, 90, .35);
    background: rgba(14, 143, 90, .06);
    color: #0b3a26;
}

.notice--warn {
    border-color: rgba(180, 83, 9, .35);
    background: rgba(180, 83, 9, .06);
    color: #3a2207;
}

/* Sticky mobile quote button */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1100;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(11, 18, 32, .18);
}

.mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(180deg, var(--brand), var(--brand-2));
    color: #fff;
    font-weight: 900;
}

@media (max-width: 760px) {
    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 74px;
    }
}

/* Utilities */
.m0 {
    margin: 0 !important;
}

.mt8 {
    margin-top: 8px !important;
}

.mt12 {
    margin-top: 12px !important;
}

.mt16 {
    margin-top: 16px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt28 {
    margin-top: 28px !important;
}

.sep {
    height: 1px;
    background: var(--border);
    margin: 14px 0;
}

.breadcrumbs {
    padding-top: calc(var(--header-h) + 16px);
    padding-bottom: 12px;
}

.breadcrumbs a {
    color: var(--brand-2);
    font-weight: 800;
}

.breadcrumbs span {
    color: var(--muted-2);
    font-weight: 700;
}

/* Reveal animations (JS toggles .reveal-visible) */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--dur-3) var(--ease-2), transform var(--dur-3) var(--ease-2);
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle hover lift */
.lift {
    transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}

.lift:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
    border-color: var(--border-2);
}

/* Inline “call / whatsapp” buttons */
.action-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* padding: 10px 12px; */
    padding: 5px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 800;
    color: var(--ink);
}

.action-chip:hover {
    border-color: var(--border-2);
    box-shadow: var(--shadow-2);
    transform: translateY(-1px);
}

.unset-ai-center {
    align-items: unset !important;
}

/* Ensure anchored sections don't hide under fixed header */
[id] {
    scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (max-width: 520px) {
    [id] {
        scroll-margin-top: calc(var(--header-h-sm) + 16px);
    }
}

/* Pulse animation */
@keyframes kicker-pulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(216, 36, 42, 0.35),
            0 0 0 3px rgba(216, 36, 42, 0.14);
        transform: scale(1);
        opacity: 1;
    }

    60% {
        box-shadow:
            0 0 0 10px rgba(216, 36, 42, 0),
            0 0 0 3px rgba(216, 36, 42, 0.14);
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(216, 36, 42, 0),
            0 0 0 3px rgba(216, 36, 42, 0.14);
        transform: scale(1);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kicker::before {
        animation: none;
    }
}
