* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-soft: #fff7ed;
    --dark: #0f1115;
    --dark-2: #1a1d24;
    --dark-3: #242833;
    --gray: #71717a;
    --muted: #a1a1aa;
    --light: #f4f4f5;
    --white: #ffffff;
    --green: #16a34a;
    --line: #e4e4e7;
    --shadow: 0 8px 24px rgba(15, 17, 21, 0.07);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--dark);
    overflow-x: clip;
}

img,
video {
    max-width: 100%;
}

button,
a,
summary,
.btn,
.faq-chip,
.status-tab {
    -webkit-tap-highlight-color: rgba(249, 115, 22, 0.18);
    touch-action: manipulation;
}

body {
    font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.has-convert-bar {
    padding-bottom: 0;
}

main {
    flex: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.announce {
    background: #111318;
    color: #e4e4e7;
    text-align: center;
    padding: 7px 7%;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.announce i {
    color: var(--primary);
    margin-right: 8px;
}

.announce a {
    color: var(--primary);
    text-decoration: none;
    margin-left: 6px;
}

.announce a:hover {
    text-decoration: underline;
}

.announce-mobile {
    display: none;
}

/* NAVIGATION */

.site-nav {
    background: rgba(15, 17, 21, 0.94);
    backdrop-filter: blur(16px);
    color: white;
    padding: 10px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}

.logo img {
    display: block;
    height: 50px;
    width: auto;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.site-nav a {
    color: #e4e4e7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
    padding: 6px 10px;
    border-radius: 8px;
}

.site-nav a:hover,
.site-nav a.active {
    color: white;
    background: rgba(249, 115, 22, 0.12);
    color: var(--primary);
}

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 6px 11px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: white !important;
}

.crumbs {
    background: var(--dark);
    padding: 10px 7% 8px;
}

.crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 0;
    list-style: none;
    font-size: 13px;
    color: #a1a1aa;
}

.crumbs li {
    display: flex;
    align-items: center;
}

.crumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #3f3f46;
}

.crumbs a {
    color: #a1a1aa;
    text-decoration: none;
}

.crumbs a:hover {
    color: #fff;
}

.crumbs [aria-current="page"] {
    color: #fff;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #3f3f46;
    color: white;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

/* HERO */

.hero {
    min-height: 560px;
    background:
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.16), transparent 28%),
        linear-gradient(110deg, rgba(15, 17, 21, 0.96), rgba(15, 17, 21, 0.78)),
        url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: flex-start;
    padding: 56px 7% 80px;
}

.hero-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 48px;
    align-items: start;
}

.hero-content {
    max-width: 640px;
    padding-top: 12px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.45);
    color: #fdba74;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 16px;
    color: #d4d4d8;
    max-width: 540px;
    margin-bottom: 22px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.97);
    color: var(--dark);
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 3;
    width: 100%;
    justify-self: end;
}

.hero-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.hero-card > p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 18px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 600;
}

.trust-chip i {
    color: var(--primary);
}

.page-hero {
    background:
        radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.16), transparent 26%),
        var(--dark);
    color: white;
    padding: 52px 7%;
}

.page-hero-inner {
    max-width: 860px;
}

.page-hero small {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
    margin: 8px 0 12px;
}

.page-hero p {
    color: #d4d4d8;
    font-size: 16px;
    max-width: 640px;
    margin-bottom: 18px;
}

.buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 13px;
    min-height: 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    border: none;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-family: inherit;
}

.btn i {
    font-size: 12px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 1px solid #52525b;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
    background: var(--dark);
    color: white;
}

.btn-dark:hover {
    background: #000;
}

.btn-ghost {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background: #128c7e;
    color: #fff;
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.28);
}

.btn-whatsapp:hover {
    background: #075e54;
    color: #fff;
}

.btn-whatsapp i {
    font-size: 15px;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    margin: 0 0 18px;
    border-radius: 12px;
    background: #128c7e;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.28);
    transition: background 0.15s, box-shadow 0.15s;
}

.wa-btn:hover {
    background: #075e54;
    color: #fff;
    box-shadow: 0 10px 24px rgba(7, 94, 84, 0.36);
}

.wa-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: #25d366;
    font-size: 22px;
}

.wa-btn-icon i {
    margin: 0;
    color: #25d366;
}

.wa-btn-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    line-height: 1.25;
}

.wa-btn-text strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.wa-btn-text span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.wa-btn-go {
    margin-left: auto;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

/* SECTIONS */

section {
    padding: 68px 7%;
}

.section-header {
    max-width: 720px;
    margin-bottom: 36px;
}

.section-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header small {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    letter-spacing: -0.03em;
    margin: 8px 0 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 15px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: -28px;
    padding: 0 7% 10px;
    position: relative;
    z-index: 1;
}

.stat {
    background: white;
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid var(--line);
}

.stat i {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.stat strong {
    display: block;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.stat span {
    color: var(--gray);
    font-size: 14px;
}

/* CARDS */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.card {
    background: white;
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
    box-shadow: var(--shadow);
    border-color: #fed7aa;
}

a.card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 14px;
}

.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    font-size: 16px;
    margin-bottom: 14px;
}

.card h3 {
    font-size: 17px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.card p {
    color: var(--gray);
}

.problem {
    border-left: 4px solid var(--primary);
}

.result-section {
    padding-top: 48px;
}

.result-shot {
    margin: 0 auto;
    max-width: 1100px;
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #3f3f46;
    box-shadow: 0 18px 50px rgba(15, 17, 21, 0.18);
}

.result-shot img {
    display: block;
    width: 100%;
    height: auto;
}

.result-shot figcaption {
    color: #a1a1aa;
    font-size: 13px;
    padding: 12px 16px 14px;
}

section:has(.home-services),
section:has(.home-why),
section:has(.home-flow) {
    padding-left: 4%;
    padding-right: 4%;
}

.home-services,
.home-why,
.home-flow {
    display: grid;
    gap: 10px;
    align-items: stretch;
}

.home-services {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.home-why {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-why .svc-tile {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
    padding: 18px 16px;
}

.home-why .svc-icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
}

.home-why .svc-tile h3,
.home-why .svc-tile p {
    grid-column: 2;
}

.home-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.svc-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 13px 15px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.svc-tile:hover {
    border-color: #fdba74;
    box-shadow: 0 10px 26px rgba(249, 115, 22, 0.12);
    transform: translateY(-3px);
}

.svc-tile:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.svc-tile.is-lead {
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 52%);
    border-color: #fdba74;
}

.svc-kicker {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    background: var(--dark);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.25;
    padding: 3px 7px;
    border-radius: 999px;
    white-space: nowrap;
}

.svc-tile:not(.is-lead) .svc-kicker {
    background: #f4f4f5;
    color: #52525b;
}

.svc-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    font-size: 15px;
}

.svc-tile h3 {
    font-size: 14.5px;
    line-height: 1.28;
    letter-spacing: -0.03em;
    margin: 0 0 6px;
}

.svc-tile p {
    color: var(--gray);
    font-size: 12.5px;
    line-height: 1.45;
    margin: 0;
    flex: 1;
}

.svc-go {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    margin-top: 12px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 11px;
}

.svc-tile:hover .svc-go {
    background: var(--primary);
    color: #fff;
}

.flow-num {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .home-services,
    .home-why,
    .home-flow {
        display: flex;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        gap: 10px;
        padding-bottom: 10px;
        scrollbar-width: thin;
        scrollbar-color: #fdba74 transparent;
        -webkit-overflow-scrolling: touch;
    }

    .home-services .svc-tile,
    .home-why .svc-tile,
    .home-flow .svc-tile {
        flex: 0 0 168px;
        scroll-snap-align: start;
    }

    .home-why .svc-tile {
        flex-basis: min(70vw, 240px);
    }

    .home-flow .svc-tile {
        flex-basis: 188px;
    }
}

.about-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 36px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.about-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1d18;
    aspect-ratio: 4 / 5;
}

.about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.about-copy small {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-copy h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    letter-spacing: -0.03em;
    margin: 8px 0 12px;
}

.about-copy p {
    color: var(--gray);
    margin-bottom: 12px;
}

.about-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 20px;
}

.about-facts span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--light);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
}

.about-facts i {
    color: var(--primary);
}

.what-casweb {
    background:
        radial-gradient(circle at 8% 0%, rgba(249, 115, 22, 0.2), transparent 34%),
        var(--dark);
    color: #fff;
    scroll-margin-top: 72px;
}

.what-casweb-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.what-casweb-intro {
    max-width: 640px;
    margin-bottom: 28px;
}

.what-casweb-intro small {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.what-casweb-intro h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    letter-spacing: -0.03em;
    margin: 8px 0 12px;
}

.what-casweb-intro p {
    color: #d4d4d8;
    margin: 0;
    font-size: 17px;
}

.what-casweb-intro strong {
    color: #fff;
}

.what-casweb-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.what-casweb-grid li {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 18px;
}

.what-casweb-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.16);
    color: var(--primary);
    font-size: 16px;
}

.what-casweb-grid strong {
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.what-casweb-grid span {
    display: block;
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.5;
}

.what-casweb-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.what-casweb-cta .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.what-casweb-cta .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    margin: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 14px;
}

.review-stars .fa-regular {
    color: #d4d4d8;
}

.review-stars-count {
    margin-left: 6px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
}

.review-card > p {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.55;
}

.review-card footer,
.review-who {
    all: unset;
    display: block;
    box-sizing: border-box;
    margin-top: 16px;
    padding: 0;
    background: none;
    color: var(--gray);
    font: 700 13px/1.4 inherit;
}

.review-empty {
    text-align: center;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 36px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.google-review-cta {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: #fff;
    text-align: left;
}

.google-review-cta p {
    margin: 0 0 10px;
    color: var(--gray);
    font-size: 14px;
}

.reviews-feed .section-header {
    margin-bottom: 22px;
}

.review-form {
    position: sticky;
    top: 88px;
    scroll-margin-top: 96px;
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}

.review-empty-page {
    max-width: none;
    margin: 0;
    padding: 40px 24px;
    background: white;
    border: 1px dashed var(--line);
    border-radius: 16px;
}

.review-empty-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 22px;
}

.review-empty-page p {
    margin: 0 0 18px;
}

.review-empty-cta {
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.review-empty-cta i {
    font-size: 13px;
}

.review-empty-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.34);
}

.page-hero .btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid #3f4450;
}

.page-hero .btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.review-stars-field {
    border: 0;
    padding: 0;
    margin: 0 0 12px;
    min-width: 0;
}

.review-stars-field legend {
    float: none;
    width: auto;
    padding: 0;
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.star-pick-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    max-width: 100%;
    padding: 0 10px 0 8px;
    background: #fafafa;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.star-pick {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 1px;
}

.star-pick input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form .star-pick label {
    display: grid;
    place-items: center;
    width: 26px;
    height: 32px;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 4px;
    color: #d4d4d8;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: color 0.12s;
}

.star-pick:not(:hover) input:checked ~ label,
.star-pick label:hover,
.star-pick label:hover ~ label {
    color: var(--primary);
}

.star-pick input:focus-visible + label {
    outline: 2px solid var(--primary);
    outline-offset: 1px;
}

.star-pick-caption {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
}

.review-grid-page {
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-hero-inner a {
    color: #fdba74;
}

/* SERVICE DETAIL */

.service-detail {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--line);
}

.service-detail h3 {
    font-size: 20px;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail h3 i {
    color: var(--primary);
}

.service-detail > p {
    color: var(--gray);
    margin-bottom: 22px;
}

.service-detail ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
}

.service-detail li {
    background: var(--light);
    padding: 13px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail li i {
    color: var(--green);
}

/* PRICING */

.pricing {
    background: var(--dark);
    color: white;
}

.pricing .section-header p {
    color: #a1a1aa;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.price-card {
    background: var(--dark-2);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid #2d313c;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 1px solid var(--primary);
    position: relative;
    background: linear-gradient(180deg, #241810, var(--dark-2));
}

.popular {
    position: absolute;
    top: -11px;
    left: 20px;
    background: var(--primary);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.price-card h3 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card h3 i {
    color: var(--primary);
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0 6px;
    letter-spacing: -0.03em;
}

.price-card > p {
    color: #a1a1aa;
    margin-bottom: 18px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 22px;
    flex: 1;
}

.price-card li {
    padding: 8px 0;
    color: #d4d4d8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card li i {
    color: var(--primary);
}

/* TABLE */

.table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--line);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th {
    background: var(--dark);
    color: white;
    text-align: left;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
}

td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

td:last-child {
    color: var(--primary-dark);
    font-weight: 800;
}

/* PROCESS */

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: left;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.step-number {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: var(--gray);
}

/* FAQ */

.faq-hero .page-hero-inner {
    max-width: 720px;
}

.faq-hero .faq-search {
    margin-top: 6px;
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.faq-hero .faq-search > i {
    color: var(--primary);
}

.faq-hero .faq-search input {
    color: var(--dark);
}

.faq-hero .faq-search input::placeholder {
    color: #a1a1aa;
}

.faq-hero .faq-meta {
    margin: 12px 2px 0;
    color: #a1a1aa;
    font-size: 13px;
    font-weight: 600;
}

.faq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 14px 14px 16px;
}

.faq-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

.faq-search > i {
    color: var(--primary);
    font-size: 15px;
}

.faq-search input {
    flex: 1;
    border: 0;
    outline: none;
    font: inherit;
    font-size: 16px;
    background: transparent;
    min-width: 0;
}

.faq-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    background: var(--light);
    color: var(--gray);
    cursor: pointer;
}

.faq-clear[hidden] {
    display: none;
}

.faq-clear:hover {
    color: var(--dark);
}

.faq-page {
    padding-top: 0;
    padding-bottom: 48px;
    margin-top: -22px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-cats {
    position: sticky;
    top: 86px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 12px;
    box-shadow: var(--shadow);
}

.faq-cats-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 2px 10px 10px;
}

.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-chip {
    appearance: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 10px;
    color: var(--dark);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 10px;
    cursor: pointer;
    line-height: 1.3;
    text-align: left;
}

.faq-chip i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 12px;
    flex-shrink: 0;
}

.faq-chip span {
    flex: 1;
    min-width: 0;
}

.faq-chip em,
.faq-chip-n {
    font-style: normal;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.faq-chip:hover {
    background: var(--light);
}

.faq-chip.is-active {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.faq-chip.is-active i {
    background: var(--primary);
    color: white;
}

.faq-chip.is-active em,
.faq-chip.is-active .faq-chip-n {
    color: var(--primary-dark);
}

.faq-body {
    min-width: 0;
    max-width: 100%;
}

.faq-group {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    margin: 0 0 18px;
    box-shadow: var(--shadow);
}

.faq-group h2 {
    font-size: 16px;
    margin: 0;
    letter-spacing: -0.02em;
    padding: 16px 20px;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    border-bottom: 1px solid var(--line);
}

.faq-group h2 i {
    color: var(--primary);
    margin-right: 8px;
}

.faq-group details {
    background: transparent;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    margin: 0;
}

.faq-group details:last-child {
    border-bottom: 0;
}

.faq-group summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 16px 20px;
    transition: background 0.15s;
}

.faq-group summary:hover {
    background: #fafafa;
}

.faq-group summary::-webkit-details-marker {
    display: none;
}

.faq-group summary > i {
    display: none;
}

.faq-group summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: auto;
    color: var(--muted);
    font-size: 11px;
    transition: transform 0.15s;
    flex-shrink: 0;
}

.faq-group details[open] summary::after {
    transform: rotate(180deg);
}

.faq-group details[open] summary {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.faq-group details p,
.faq-group details ul {
    margin: 0;
    color: var(--gray);
    padding: 4px 20px 16px;
    font-size: 15px;
    line-height: 1.65;
}

.faq-group details p + p,
.faq-group details ul {
    padding-top: 8px;
}

.faq-group details ul {
    padding-left: 38px;
}

.faq-group details li {
    margin-bottom: 6px;
}

.faq-empty {
    margin: 0;
    text-align: center;
    color: var(--gray);
    padding: 48px 20px;
    background: white;
    border: 1px dashed var(--line);
    border-radius: 18px;
}

.faq-empty i {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 10px;
}

.faq-empty .buttons {
    justify-content: center;
    margin-top: 14px;
}

/* CONTACT */

.contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.contact-form {
    position: relative;
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: 14px;
    background: #fafafa;
}

.contact-form input:not([type="radio"]):not([type="checkbox"]):focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 2px solid #fdba74;
    border-color: var(--primary);
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.form-note {
    color: var(--gray);
    font-size: 14px;
    margin-top: 12px;
}

.form-note.success {
    color: var(--green);
    font-weight: 700;
}

.form-note.error {
    color: #b91c1c;
    font-weight: 700;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.aside-box {
    background: var(--dark);
    color: white;
    padding: 22px;
    border-radius: var(--radius);
}

.aside-box h3 {
    margin-bottom: 14px;
}

.aside-box li {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: #d4d4d8;
}

.aside-box ul i {
    color: var(--primary);
    margin-top: 4px;
}

.aside-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    margin: 0 0 12px;
}

.aside-phone i {
    margin-top: 0;
}

/* CTA */

.cta {
    background: linear-gradient(135deg, #ea580c, #f97316 55%, #fb923c);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.cta p {
    max-width: 580px;
    margin: 0 auto 18px;
    font-size: 15px;
}

.cta .btn {
    background: white;
    color: var(--dark);
}

.cta .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.45);
}

.cta-actions {
    justify-content: center;
}

/* CONVERT UI */

.convert-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: var(--dark);
    color: white;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.18);
}

.convert-bar span {
    font-size: 14px;
    font-weight: 700;
}

.float-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 130;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: min(380px, calc(100vw - 36px));
}

.float-cta {
    position: static;
    background: var(--primary);
    color: white;
    padding: 8px 13px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
    flex-shrink: 0;
}

.float-cta:hover {
    background: var(--primary-dark);
}

.float-cta.float-wa {
    background: #16a34a;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.28);
}

.float-cta.float-wa:hover {
    background: #15803d;
}

/* FOOTER */

.site-footer {
    background: var(--dark);
    color: #a1a1aa;
    padding: 44px 7% 22px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr 1fr;
    gap: 32px 24px;
    max-width: 1180px;
    margin: 0 auto 32px;
    text-align: left;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
}

.footer-brand img {
    display: block;
    height: 72px;
    width: auto;
}

.footer-brand-col p {
    margin: 14px 0 16px;
    font-size: 14px;
    line-height: 1.65;
    max-width: 320px;
}

.footer-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-chips span,
.footer-chips a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dark-2);
    color: #e4e4e7;
    border: 1px solid #2d313c;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.footer-chips a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer-chips i {
    color: var(--primary);
}

.footer-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-cta {
    margin-top: 4px;
}

.site-footer .btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid #3f4450;
}

.site-footer .btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-col h4 {
    color: white;
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--primary);
}

.footer-chips a.chip-wa:hover {
    color: #25d366;
    border-color: #25d366;
}

.convert-bar a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1180px;
    margin: 0 auto;
    border-top: 1px solid #2d313c;
    padding-top: 20px;
}

.footer-copy {
    text-align: left;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
}

.footer-bottom-links a,
.footer-bottom-links button {
    color: #a1a1aa;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

.footer-bottom-links a:hover,
.footer-bottom-links button:hover {
    color: var(--primary);
}

/* COOKIE BANNER */

.cookie-banner {
    position: static;
    width: 100%;
    background: #111318;
    color: #e4e4e7;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.cookie-banner strong {
    display: block;
    color: white;
    margin-bottom: 4px;
}

.cookie-banner p {
    font-size: 13px;
    line-height: 1.5;
    color: #a1a1aa;
}

.cookie-banner a {
    color: var(--primary);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-actions .btn-ghost {
    background: transparent;
    color: white;
    border-color: #3f4450;
}

body.has-cookie-banner .site-footer {
    padding-bottom: 28px;
}

/* LEGAL PAGES */

.legal-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 72px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 16px;
}

.legal-toc strong {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-toc a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
}

.legal-toc a:last-child {
    border-bottom: 0;
}

.legal-toc a:hover {
    color: var(--primary);
}

.legal-doc {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 40px;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.legal-doc h2 {
    font-size: 22px;
    letter-spacing: -0.03em;
    margin: 28px 0 12px;
}

.legal-doc h2:first-of-type {
    margin-top: 0;
}

.legal-doc h3 {
    font-size: 17px;
    margin: 20px 0 8px;
}

.legal-doc p,
.legal-doc li {
    color: #3f3f46;
    margin-bottom: 12px;
}

.legal-doc ul,
.legal-doc ol {
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-doc a {
    color: var(--primary-dark);
}

.legal-doc code {
    background: var(--light);
    border-radius: 6px;
    padding: 1px 6px;
    font-size: 0.92em;
}

.legal-callout {
    background: var(--primary-soft);
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 8px 0 22px;
}

.legal-callout p {
    margin: 0;
    color: var(--dark);
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    margin: 4px 0 16px;
    line-height: 1.45;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-consent a {
    color: var(--primary-dark);
}

.has-status-job .page-hero,
.has-status-job .float-cta {
    display: none;
}

.has-status-job main > section {
    padding-top: 28px;
    padding-bottom: 40px;
}

body:has(.status-hero):not(.has-status-job) main {
    background: var(--dark);
}

.status-hero {
    padding-top: 56px;
    padding-bottom: 64px;
}

.status-lookup {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.status-lookup h1 {
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
    margin: 8px 0 12px;
}

.status-lookup > p {
    color: #d4d4d8;
    font-size: 16px;
    margin: 0 auto 26px;
}

.status-result-section {
    display: none;
    padding: 0;
}

.has-status-job .status-result-section {
    display: block;
}

.status-form {
    text-align: left;
    background: white;
    color: var(--dark);
    border-radius: 16px;
    padding: 22px 22px 18px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    border-top: 3px solid var(--primary);
}

.status-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.status-form-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.status-code-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    background: var(--light);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.status-code-field:focus-within {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.status-code-icon {
    display: flex;
    color: var(--primary);
    font-size: 16px;
}

.status-form input {
    flex: 1;
    min-width: 0;
    width: 100%;
    padding: 14px 0;
    border: 0;
    background: transparent;
    outline: none;
    font: inherit;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.status-form input::placeholder {
    letter-spacing: 0.08em;
    color: #a1a1aa;
    font-weight: 700;
}

.status-form .btn {
    min-height: 50px;
    padding: 0 18px;
    flex-shrink: 0;
    border-radius: 10px;
    font-size: 14px;
}

.status-form .form-note {
    margin-top: 12px;
}

.status-form .form-note:empty {
    display: none;
}

.status-form-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.status-form-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
}

.status-form-meta i {
    color: var(--primary);
}

.status-result {
    max-width: 820px;
    margin: 0 auto;
}

.status-loading,
.status-empty {
    color: var(--gray);
    text-align: center;
    padding: 28px 12px;
}

.status-sheet {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.status-head {
    background:
        radial-gradient(circle at 88% 0%, rgba(249, 115, 22, 0.22), transparent 34%),
        var(--dark);
    color: white;
    padding: 26px 26px 22px;
}

.status-head-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.status-kicker {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-code {
    font-size: clamp(28px, 5vw, 36px);
    letter-spacing: 0.06em;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 8px;
}

.status-device {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #e4e4e7;
}

.status-updated {
    margin: 8px 0 0;
    color: #a1a1aa;
    font-size: 13px;
}

.status-tabs {
    display: flex;
    background: #fafafa;
    box-shadow: inset 0 -1px 0 var(--line);
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.status-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.status-tab {
    appearance: none;
    background: none;
    border: 0;
    box-shadow: inset 0 -2px 0 transparent;
    color: var(--gray);
    cursor: pointer;
    flex: 1 1 0;
    min-width: 0;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 8px;
    text-align: center;
}

.status-tab em {
    font-style: normal;
    background: var(--light);
    border-radius: 999px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
}

.status-tab.active {
    color: var(--dark);
    box-shadow: inset 0 -2px 0 var(--primary);
    font-weight: 700;
}

.status-tab:hover {
    color: var(--dark);
}

.status-tab-panel {
    min-height: 180px;
}

.status-highlight {
    margin: 16px 22px 4px;
    background: var(--primary-soft);
    border: 1px solid #fdba74;
    border-radius: 12px;
    padding: 14px 16px;
}

.status-highlight span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.status-highlight p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.status-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 6px 22px 8px;
}

.status-fact {
    padding: 12px 10px 12px 0;
    border-top: 1px solid var(--line);
}

.status-fact span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 3px;
}

.status-fact strong {
    font-size: 15px;
    font-weight: 700;
}

.status-panel {
    padding: 4px 22px 22px;
}

.status-panel h2 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    margin: 10px 0 10px;
}

.status-panel > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 22px 22px;
    border-top: 1px solid var(--line);
}

.status-actions .btn {
    min-height: 36px;
}

.status-hero-card {
    display: none;
}

.status-block {
    display: none;
}

.status-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.status-photo {
    position: relative;
    margin: 0;
}

.status-photo img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
}

.ba-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 12px;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ba-grid .status-photo img {
    height: 220px;
    border-radius: 0;
}

.ba-card > p {
    margin: 0;
    padding: 10px 12px 12px;
    font-size: 13px;
    color: var(--gray);
}

.ba-empty {
    min-height: 220px;
    display: grid;
    place-items: center;
    background: #111318;
    color: #a1a1aa;
    font-size: 13px;
}

.ba-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 17, 21, 0.78);
    color: white;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
}

.ba-label.ba-after {
    background: rgba(22, 163, 74, 0.9);
}

.photo-sub {
    margin: 18px 0 8px;
    font-size: 14px;
    color: var(--gray);
}

.status-photo figcaption {
    font-size: 13px;
    color: var(--gray);
    margin-top: 6px;
}

.status-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.status-timeline li {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    position: relative;
    padding-bottom: 16px;
}

.status-timeline li:last-child {
    padding-bottom: 0;
}

.status-timeline li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 18px;
    bottom: 0;
    width: 2px;
    background: #ffedd5;
}

.status-dot {
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.status-time-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.status-time-row time {
    font-size: 12px;
    color: var(--gray);
}

.status-timeline p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--dark);
}

@media (max-width: 640px) {
    .status-hero {
        padding-top: 40px;
        padding-bottom: 48px;
    }

    .status-form {
        padding: 18px 16px 16px;
    }

    .status-form-row {
        flex-direction: column;
    }

    .status-form .btn {
        width: 100%;
    }

    .status-facts {
        grid-template-columns: 1fr;
        padding: 6px 16px 8px;
    }
    .status-head {
        padding: 22px 18px 18px;
    }
    .status-highlight {
        margin-left: 16px;
        margin-right: 16px;
    }
    .status-panel,
    .status-actions {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.status-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 21, 0.88);
    display: grid;
    place-items: center;
    z-index: 220;
    padding: 20px;
}

.status-lightbox img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    background: var(--light);
    color: var(--dark);
}

.badge.receptionat { background: #e0e7ff; color: #3730a3; }
.badge.diagnostic { background: #ede9fe; color: #6d28d9; }
.badge.in_lucru { background: #ffedd5; color: #c2410c; }
.badge.asteapta_piese,
.badge.asteapta_acord { background: #fef3c7; color: #b45309; }
.badge.gata { background: #dcfce7; color: #15803d; }
.badge.predat { background: #d1fae5; color: #047857; }
.badge.anulat { background: #fee2e2; color: #b91c1c; }

@media (hover: none) {
    .card:hover,
    .svc-tile:hover,
    .btn-primary:hover,
    .btn-dark:hover,
    .wa-btn:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(18, 140, 126, 0.28);
    }

    .svc-tile:hover {
        box-shadow: none;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .contact-wrap,
    .footer-inner,
    .legal-wrap,
    .stats,
    .review-grid,
    .about-card,
    .reviews-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .what-casweb-grid {
        grid-template-columns: 1fr 1fr;
    }

    .review-form {
        position: static;
    }

    .review-form-row {
        grid-template-columns: 1fr;
    }

    .review-grid-page {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .stats {
        margin-top: 0;
        padding: 24px 5% 0;
        grid-template-columns: 1fr 1fr;
    }

    .hero,
    .site-nav,
    .page-hero,
    section,
    .announce {
        padding-left: 5%;
        padding-right: 5%;
    }

    .faq-cats {
        position: static;
        padding: 12px 12px 8px;
        border-radius: 16px;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .faq-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin: 0 -12px;
        padding: 0 12px 8px;
        gap: 8px;
    }

    .faq-nav::-webkit-scrollbar {
        display: none;
    }

    .faq-chip {
        width: auto;
        flex-shrink: 0;
        padding: 8px 12px 8px 8px;
        background: var(--light);
        border-radius: 999px;
    }

    .faq-chip span {
        flex: none;
        white-space: nowrap;
    }

    .faq-chip.is-active {
        background: var(--primary-soft);
        color: var(--primary-dark);
    }
}

@media (max-width: 700px) {
    .announce {
        padding: 8px 16px;
        font-size: 12px;
        line-height: 1.35;
    }

    .announce-desktop {
        display: none;
    }

    .announce-mobile {
        display: inline;
    }

    .site-nav {
        padding: 10px 16px;
        padding-top: max(10px, env(safe-area-inset-top, 0px));
        position: sticky;
        top: 0;
    }

    .crumbs {
        padding: 10px 16px 0;
    }

    .what-casweb-grid {
        grid-template-columns: 1fr;
    }

    .what-casweb-cta,
    .what-casweb-cta .btn {
        width: 100%;
    }

    .logo img {
        height: 42px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 8px 0 6px;
        max-height: calc(100dvh - 120px);
        overflow-y: auto;
    }

    .site-nav ul.open {
        display: flex;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 15px;
    }

    .nav-cta {
        text-align: center;
        justify-content: center;
    }

    section,
    .page-hero {
        padding: 48px 16px;
    }

    .hero {
        padding: 28px 16px 24px;
        min-height: auto;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .hero p,
    .page-hero p,
    .cta p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 10px;
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    .page-hero {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .buttons {
        width: 100%;
    }

    .hero .buttons .btn,
    .page-hero .buttons .btn,
    .cta .btn {
        width: 100%;
    }

    .trust-row {
        margin-top: 14px;
        gap: 8px;
    }

    .trust-chip {
        font-size: 12px;
        width: 100%;
    }

    .stats {
        padding: 16px 16px 0;
        gap: 10px;
    }

    .stat {
        padding: 14px;
        border-radius: 14px;
    }

    .stat strong {
        font-size: 16px;
    }

    .stat span {
        font-size: 12px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2,
    .cta h2 {
        font-size: 26px;
    }

    .grid,
    .price-grid,
    .steps,
    .contact-grid,
    .service-detail ul,
    .review-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-card {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 16px;
    }

    .about-photo {
        max-height: 280px;
        aspect-ratio: 16 / 10;
    }

    .about-photo img {
        min-height: 0;
        object-position: center 15%;
    }

    .about-copy .buttons,
    .about-copy .buttons .btn {
        width: 100%;
    }

    .card,
    .step,
    .price-card,
    .service-detail,
    .contact-form,
    .hero-card,
    .aside-box {
        padding: 20px;
        border-radius: 16px;
    }

    .card:hover {
        transform: none;
    }

    .ba-grid {
        grid-template-columns: 1fr;
    }

    .service-detail h3,
    .price-card h3 {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .price {
        font-size: 30px;
    }

    .table-wrapper {
        -webkit-overflow-scrolling: touch;
        margin: 0 -4px;
    }

    table {
        min-width: 520px;
    }

    th,
    td {
        padding: 12px 14px;
        font-size: 14px;
    }

    .faq-page {
        padding-top: 0;
        padding-bottom: 28px;
        margin-top: -12px;
    }

    .faq-layout {
        gap: 16px;
    }

    .faq-group details p,
    .faq-group details ul {
        padding-left: 16px;
        padding-right: 16px;
    }

    .faq-group details ul {
        padding-left: 32px;
    }

    .faq-group h2,
    .faq-group summary {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select,
    .status-form input,
    .faq-search input,
    input[type="search"],
    input[type="tel"],
    input[type="text"],
    input[type="email"],
    select,
    textarea {
        font-size: 16px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        margin-bottom: 12px;
    }

    .btn {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 15px;
    }

    .site-footer {
        padding: 32px 16px calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .footer-cta-row {
        display: flex;
    }

    .footer-cta {
        flex: 1;
        justify-content: center;
    }

    .footer-brand img {
        height: 58px;
    }

    body.has-cookie-banner .site-footer {
        padding-bottom: 28px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-brand-col p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-toc {
        position: static;
    }

    .legal-doc {
        padding: 22px 18px;
    }

    .float-stack {
        left: 10px;
        right: 10px;
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        max-width: none;
        align-items: stretch;
    }

    .cookie-banner {
        padding: 14px 14px;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .float-cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }

    .convert-bar {
        display: flex;
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 8px;
    }

    .convert-bar .btn {
        flex: 1;
        justify-content: center;
        min-height: 44px;
        padding: 8px 12px;
        font-size: 14px;
    }

    body.has-convert-bar {
        padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    }

    .faq-search input {
        font-size: 16px;
    }

    .faq-group summary {
        min-height: 48px;
        align-items: center;
    }

    .star-pick-row {
        width: 100%;
        flex-wrap: wrap;
        min-height: 44px;
    }

    .star-pick-caption {
        white-space: normal;
    }

    .status-tab {
        min-height: 48px;
        font-size: 14px;
    }

    .status-actions {
        flex-direction: column;
    }

    .status-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .result-shot figcaption {
        font-size: 12px;
        padding: 0 4px;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .section-header h2,
    .cta h2 {
        font-size: 24px;
    }
}

/* Sign page */
body.sign-page {
    background:
        radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.16), transparent 30%),
        var(--light);
    display: block;
    min-height: 100vh;
}
.sign-wrap {
    width: min(560px, calc(100% - 28px));
    margin: 0 auto;
    padding: 18px 0 40px;
}
.sign-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.sign-top .brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    background: var(--dark);
    padding: 7px 10px;
    border-radius: 10px;
    text-decoration: none;
}
.sign-top .brand img {
    display: block;
    height: 42px;
    width: auto;
}
.sign-top small {
    color: var(--gray);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sign-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 18px 18px;
    box-shadow: var(--shadow);
}
.sign-card h1 {
    font-size: 24px;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}
.sign-kicker {
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.sign-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin: 0 0 16px;
}
.sign-facts .wide { grid-column: 1 / -1; }
.sign-facts dt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
}
.sign-facts dd { font-size: 14px; font-weight: 600; }
.sign-pad-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}
.sign-pad {
    border: 1px dashed #fdba74;
    border-radius: 12px;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 27px, #f4f4f5 28px),
        #fff;
    overflow: hidden;
    touch-action: none;
}
.sign-pad canvas {
    display: block;
    width: 100%;
    height: 210px;
    touch-action: none;
    cursor: crosshair;
}
.sign-confirm {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 14px 0 12px;
    font-size: 14px;
}
.sign-confirm input { margin-top: 3px; accent-color: var(--primary); }
.sign-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sign-actions .btn-primary { flex: 1; }
.sign-state {
    text-align: center;
    padding: 28px 8px 16px;
}
.sign-state i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
}
.sign-state.ok i { color: var(--green); }
.sign-state h1 { font-size: 24px; margin-bottom: 8px; }
.sign-state .sign-actions {
    justify-content: center;
    margin-top: 16px;
}
.sign-state .btn-primary { width: 100%; }
.sign-loading { color: var(--gray); }
@media (max-width: 520px) {
    .sign-facts { grid-template-columns: 1fr; }
    .sign-top { flex-direction: column; gap: 4px; }
}

@media (max-width: 420px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 26px;
    }

    .logo img {
        height: 36px;
    }

    .announce {
        font-size: 11px;
        padding: 7px 12px;
    }
}

.home-status {
    background: var(--dark);
    color: #fff;
    padding-top: 48px;
    padding-bottom: 48px;
}

.home-status-inner {
    display: grid;
    grid-template-columns: 1.1fr minmax(280px, 1fr);
    gap: 32px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.home-status small {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.home-status h2 {
    color: #fff;
    margin: 8px 0 10px;
    letter-spacing: -0.03em;
}

.home-status > p,
.home-status-copy p {
    color: #d4d4d8;
    margin: 0;
}

.home-status .status-form {
    margin: 0;
}

.warranty-note {
    margin: 18px auto 0;
    max-width: 1100px;
    background: var(--primary-soft);
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--dark);
}

.gallery-grid {
    display: grid;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-case {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.gallery-pair figure {
    margin: 0;
    position: relative;
    min-height: 160px;
    background: var(--light);
}

.gallery-pair img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 17, 21, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 999px;
}

.gallery-case figcaption,
.gallery-case > p {
    padding: 12px 16px 16px;
    color: var(--gray);
    font-size: 14px;
}

.seo-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
}

.seo-facts span {
    background: var(--primary-soft);
    color: var(--dark);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
}

.seo-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 900px) {
    .home-status-inner,
    .seo-related,
    .gallery-pair {
        grid-template-columns: 1fr;
    }

    .gallery-pair img {
        height: 200px;
    }
}

.aeo-panel {
    background: #fff;
}

.aeo-panel dl {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.aeo-panel dl > div {
    background: var(--light);
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line);
}

.aeo-panel dt {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.aeo-panel dd {
    margin: 0;
    color: var(--gray);
}
/* Light visual system: shared navigation and footer. */
html { background: #fff; }
.announce { background: #fff7ed; color: #56514b; border-bottom: 1px solid #ffead5; }
.announce a { color: #b94700; }
.site-nav { background: rgba(255,255,255,.97); color: #202328; border-bottom: 1px solid #e9e9e7; box-shadow: 0 3px 18px #17202a04; }
.site-nav a { color: #42474d; }
.site-nav a:hover, .site-nav a.active { color: #c34d00; background: #fff5ea; }
.menu-toggle { color: #272c33; border-color: #dededb; }
.site-footer { background: #f5f6f7; color: #656a72; border-top: 1px solid #e4e6e8; }
.footer-col h4 { color: #262b31; }
.footer-links a, .footer-bottom-links a, .footer-bottom-links button { color: #60656d; }
.footer-chips span, .footer-chips a { background: #fff; color: #535860; border-color: #e0e3e6; }
.footer-bottom { border-color: #e0e3e6; }
.crumbs { background: #f5f6f7; }
.crumbs a, .crumbs ol { color: #626872; }
.crumbs [aria-current="page"], .crumbs a:hover { color: #252b32; }
:focus-visible { outline: 3px solid #bd4900; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }
