:root {
    --bg: #05050a;
    --bg-soft: #0b0b14;
    --surface: #10101c;
    --surface-2: #171727;
    --surface-3: rgba(255, 255, 255, .045);
    --text: #f5f7fa;
    --muted: #a1a1b5;
    --muted-2: #6f7085;
    --border: rgba(255, 255, 255, .10);
    --border-strong: rgba(255, 255, 255, .18);
    --primary: #7c3aed;
    --secondary: #2563eb;
    --cyan: #22d3ee;
    --pink: #ec4899;
    --neon: #a855f7;
    --success: #39ff88;
    --radius: 24px;
    --radius-sm: 14px;
    --container: 1240px;
    --header-height: 82px;
    --section-padding: 112px;
    --font-primary: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Space Grotesk", Inter, Manrope, system-ui, sans-serif;
    --gradient-primary: linear-gradient(135deg, #7c3aed, #2563eb);
    --gradient-soft: linear-gradient(135deg, rgba(124, 58, 237, .25), rgba(37, 99, 235, .18));
    --shadow-glow: 0 0 40px rgba(124, 58, 237, .25);
    --shadow-card: 0 28px 80px rgba(0, 0, 0, .34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

body::before {
    background:
        radial-gradient(circle at 84% 8%, rgba(124, 58, 237, .34), transparent 28%),
        radial-gradient(circle at 10% 32%, rgba(37, 99, 235, .24), transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(34, 211, 238, .12), transparent 28%),
        var(--bg);
}

body::after {
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .2));
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
input,
select,
textarea {
    outline-color: var(--cyan);
    outline-offset: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

p {
    margin-bottom: 0;
}

.section {
    width: min(var(--container), calc(100% - 64px));
    margin-inline: auto;
    padding-block: var(--section-padding);
}

.section + .section {
    padding-top: 0;
}

.section-head,
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 34px;
}

.eyebrow,
.section-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--cyan);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-eyebrow::before,
.section-kicker::before {
    content: "";
    flex: 0 0 28px;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.section-head h2,
.section-title,
.split h2,
.cta h2 {
    max-width: 1200px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 4.4vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -.02em;
}

.section-description,
.section-head p:not(.eyebrow):not(.section-eyebrow):not(.section-kicker),
.wide-text {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.06rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto minmax(360px, 1fr) auto;
    gap: 26px;
    align-items: center;
    min-height: var(--header-height);
    padding-inline: max(32px, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 10, .72);
    backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-weight: 900;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(168, 85, 247, .55);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .32), rgba(37, 99, 235, .20));
    box-shadow: 0 0 28px rgba(124, 58, 237, .22);
    color: var(--text);
    font-size: .78rem;
}

.brand-logo {
    width: 34px;
    height: 34px;
    overflow: visible;
}

.brand-logo-frame,
.brand-logo-code,
.brand-logo-slash {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-logo-frame {
    stroke: rgba(255, 255, 255, .26);
    stroke-width: 1.5;
}

.brand-logo-code {
    stroke: var(--cyan);
    stroke-width: 2.8;
}

.brand-logo-slash {
    stroke: #c4b5fd;
    stroke-width: 3;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

.desktop-nav a {
    position: relative;
    padding: 10px 0;
    border-radius: 0;
    transition: color .22s ease;
}

.desktop-nav > a::after,
.customer-menu-link::after,
.cart-link::after,
.icon-button::after,
.mobile-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), #a855f7);
    box-shadow: 0 0 14px rgba(34, 211, 238, .65), 0 0 22px rgba(168, 85, 247, .36);
    transition: width .28s ease;
}

.desktop-nav a:hover {
    color: var(--text);
}

.desktop-nav > a:hover::after,
.customer-menu-link:hover::after,
.cart-link:hover::after,
.icon-button:hover::after,
.mobile-menu a:hover::after {
    width: 100%;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-left: 2px;
}

.language-switch a {
    display: grid;
    place-items: center;
    width: 30px;
    height: 24px;
    padding: 0;
    border-radius: 6px;
    opacity: .55;
    transition: opacity .22s ease, transform .22s ease;
}

.language-switch a:hover,
.language-switch a.active {
    opacity: 1;
    transform: translateY(-1px);
}

.flag {
    position: relative;
    display: block;
    width: 22px;
    height: 15px;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .24);
}

.flag-br {
    background: #159447;
}

.flag-br::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #f7d117;
    transform: translate(-50%, -50%) rotate(45deg);
}

.flag-br::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1f3f96;
    transform: translate(-50%, -50%);
}

.flag-en {
    background: #fff;
}

.flag-en::before,
.flag-en::after {
    content: "";
    position: absolute;
    background: #cf142b;
}

.flag-en::before {
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
}

.flag-en::after {
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
}

.header-actions {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.customer-menu-link {
    position: relative;
    margin-left: 8px;
    color: #a855f7;
    font-size: .9rem;
    font-weight: 900;
    padding: 10px 0;
    white-space: nowrap;
    transition: color .22s ease;
}

.customer-menu-link:hover {
    color: #c4b5fd;
}

.cart-link,
.icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: .9rem;
    font-weight: 800;
    transition: color .22s ease;
}

.cart-link {
    gap: 10px;
    padding: 0;
}

.cart-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
}

.cart-icon svg {
    width: 32px;
    height: 32px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
}

.icon-button {
    padding-inline: 0;
    cursor: pointer;
}

.cart-link:hover,
.icon-button:hover {
    color: #c4b5fd;
}

.mobile-only,
.mobile-menu {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 24px;
    left: 24px;
    z-index: 60;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(16, 16, 28, .96);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    padding: 12px;
}

.mobile-menu.open {
    display: grid;
    gap: 6px;
}

.mobile-menu a {
    position: relative;
    padding: 13px 14px;
    border-radius: 0;
    color: var(--muted);
    font-weight: 800;
}

.mobile-menu a:hover {
    color: var(--text);
}

.mobile-menu a::after {
    right: 14px;
    bottom: 7px;
}

.btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}

.btn {
    padding: 0 24px;
    border: 1px solid transparent;
}

.btn.primary,
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 16px 42px rgba(124, 58, 237, .28);
}

.btn.secondary,
.btn-secondary,
.btn-outline {
    border-color: var(--border);
    background: rgba(255, 255, 255, .045);
    color: var(--text);
}

.btn-ghost,
.text-link {
    min-height: auto;
    padding: 0;
    border: 0;
    color: var(--cyan);
    background: transparent;
}

.btn-small {
    min-height: 40px;
    padding-inline: 18px;
    font-size: .88rem;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, .62);
    box-shadow: var(--shadow-glow);
}

.button-row,
.meta-line,
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.button-row {
    gap: 12px;
}

.button-row:not(:first-child) {
    margin-top: clamp(16px, 2vw, 24px);
}

.meta-line {
    gap: 0;
    margin-top: 24px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 650;
}

.meta-line span {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.meta-line span + span::before {
    content: "·";
    color: var(--cyan);
    margin: 0 12px;
}

.meta-line.compact {
    margin-top: 14px;
    font-size: .82rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.tech-list li {
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 7px;
    background: rgba(255, 255, 255, .045);
    color: var(--cyan);
    padding: 7px 9px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.skill-grid span {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 34px;
    padding: 8px 10px;
    border-left: 2px solid var(--cyan);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    color: var(--text);
    font-size: .82rem;
    font-weight: 750;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.category-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.category-label::before {
    content: "/";
    color: var(--primary);
    margin-right: 6px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: var(--muted);
    padding: 7px 9px;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.filter-tabs {
    gap: 18px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.store-controls {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 32px;
}

.store-controls .filter-tabs {
    flex: 1;
    margin-bottom: 0;
}

.store-sort {
    display: grid;
    gap: 8px;
    min-width: 220px;
}

.store-sort label {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.store-sort select {
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    padding: 10px 12px;
    font-weight: 800;
    color-scheme: dark;
}

.store-sort select option {
    background: #10101c;
    color: #f5f7fa;
}

.filter-tabs a,
.filter-tabs button {
    position: relative;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    padding: 0 0 12px;
    font-weight: 850;
    line-height: 1.2;
    transition: color .22s ease;
}

.filter-tabs a:hover,
.filter-tabs button:hover,
.filter-tabs .active {
    color: var(--text);
}

.filter-tabs .active::after,
.filter-tabs a.active::after,
.filter-tabs button.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
    gap: clamp(42px, 6vw, 82px);
    align-items: center;
    min-height: calc(100vh - var(--header-height));
    padding-block: clamp(78px, 9vw, 128px);
}

.hero-copy {
    max-width: 820px;
}

.hero h1 {
    max-width: 1200px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4.4rem, 6.5vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.05em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text), #c4b5fd 48%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy .lead {
    max-width: 690px;
    margin-top: 24px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.hero .meta-line {
    margin: 30px 0;
}

.profile-card {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(168, 85, 247, .35);
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(124, 58, 237, .22), rgba(37, 99, 235, .11)), rgba(255, 255, 255, .045);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    overflow: visible;
}

.profile-card::before {
    content: none;
}

.hero-profile-image,
.profile-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.profile-info {
    position: relative;
    display: grid;
    gap: 8px;
    padding: 18px 4px 4px;
}

.profile-info strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.profile-info span {
    color: var(--muted);
    font-weight: 700;
}

.split,
.case-hero,
.product-detail,
.checkout-grid,
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(34px, 6vw, 78px);
}

.about-visual {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 26px;
    align-items: center;
}

.about-personal {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: start;
}

.about-personal-copy {
    display: grid;
    gap: 18px;
}

.about-personal-copy h2 {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.35rem);
    line-height: 1.04;
}

.about-personal-copy p:not(.section-kicker) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.06rem;
}

.about-questions {
    display: grid;
    gap: 12px;
}

.about-questions details {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(34, 211, 238, .06)),
        rgba(255, 255, 255, .045);
    overflow: hidden;
}

.about-questions summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--text);
    font-weight: 900;
    line-height: 1.35;
}

.about-questions summary::marker {
    color: var(--cyan);
}

.about-questions details p {
    padding: 0 20px 20px;
    color: var(--muted);
}

.image-panel,
.mockup-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--gradient-soft);
    padding: 16px;
    box-shadow: var(--shadow-card);
}

.image-panel img,
.mockup-image,
.project-image,
.product-image,
.case-image,
.case-cover,
.project-thumb,
.product-thumb {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.mockup-grid {
    display: grid;
    gap: 14px;
}

.mockup-tile {
    min-height: 100px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .28), rgba(37, 99, 235, .12)),
        rgba(255, 255, 255, .04);
    padding: 18px;
}

.grid,
.card-grid,
.service-grid,
.editorial-grid,
.case-grid,
.timeline-grid,
.stack-grid {
    display: grid;
    gap: 24px;
}

.grid-2,
.editorial-grid,
.case-grid,
.projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.service-grid,
.products-grid,
.timeline-grid,
.stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.project-card,
.product-card,
.service-card,
.service-detail,
.summary-panel,
.form-panel,
.editorial-grid article,
.case-grid article,
.timeline-card,
.stack-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.project-card:hover,
.product-card:hover,
.service-card:hover,
.service-detail:hover,
.editorial-grid article:hover,
.case-grid article:hover,
.timeline-card:hover,
.stack-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, .55);
    background: rgba(124, 58, 237, .08);
    box-shadow: var(--shadow-glow);
}

.project-card {
    display: grid;
    overflow: hidden;
}

.project-card.featured-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.project-image {
    display: block;
    position: relative;
}

.project-thumb {
    width: 100%;
    height: auto;
    min-height: 260px;
    aspect-ratio: 16 / 10;
}

.project-body,
.service-card,
.service-detail,
.summary-panel,
.form-panel,
.editorial-grid article,
.case-grid article,
.timeline-card,
.stack-card {
    padding: 28px;
}

.project-body {
    display: grid;
    align-content: start;
    min-height: 330px;
}

.project-body h3,
.product-card h2,
.service-card h3,
.service-detail h2,
.editorial-grid h2,
.case-grid h2,
.timeline-card h3,
.stack-card h3 {
    margin: 10px 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    line-height: 1.08;
}

.project-body p,
.product-card p,
.service-card p,
.service-detail p,
.editorial-grid p,
.case-grid p,
.timeline-card p,
.stack-card p,
.info-stack p {
    color: var(--muted);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: auto;
    padding-top: 22px;
}

.service-card {
    display: grid;
    min-height: 260px;
    grid-template-rows: auto auto 1fr auto;
    align-content: start;
}

.service-card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
    font-weight: 900;
}

.service-card .text-link {
    margin-top: 24px;
    align-self: end;
}

.carousel-shell {
    --carousel-visible: 1;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 18px;
    align-items: center;
}

.carousel-viewport {
    min-width: 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform .32s ease;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 100%;
    min-width: 0;
}

.service-carousel {
    --carousel-visible: 3;
}

.service-carousel .carousel-item {
    flex-basis: calc((100% - 48px) / 3);
}

.testimonial-carousel {
    --carousel-visible: 2;
}

.testimonial-carousel .carousel-item {
    flex-basis: calc((100% - 24px) / 2);
}

.carousel-arrow {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, opacity .22s ease, box-shadow .22s ease;
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.carousel-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, .55);
    box-shadow: var(--shadow-glow);
}

.carousel-arrow:disabled {
    cursor: default;
    opacity: .35;
}

.services-list {
    display: grid;
    gap: 30px;
}

.service-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 34px;
    align-items: stretch;
    padding: 30px;
}

.service-detail-copy,
.service-detail-main,
.service-detail-meta {
    display: grid;
}

.service-detail-copy {
    gap: 22px;
    align-content: start;
}

.service-detail-header {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.service-detail-header .service-icon {
    margin-bottom: 0;
}

.service-detail-main {
    gap: 12px;
}

.service-detail-main h2 {
    margin: 0;
}

.service-detail-main p {
    max-width: 760px;
}

.service-detail-meta {
    gap: 16px;
    padding-top: 4px;
}

.service-detail-meta > div {
    padding-left: 14px;
    border-left: 1px solid rgba(34, 211, 238, .26);
}

.service-detail-meta .category-label {
    margin-bottom: 7px;
}

.service-detail .btn {
    width: max-content;
}

.service-preview {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    background:
        radial-gradient(circle at 18% 18%, rgba(124, 58, 237, .22), transparent 38%),
        linear-gradient(135deg, rgba(34, 211, 238, .10), rgba(124, 58, 237, .10)),
        rgba(255, 255, 255, .035);
    overflow: hidden;
}

.service-preview img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.testimonial-card {
    display: grid;
    align-content: space-between;
    min-height: 270px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset;
}

.testimonial-card p {
    margin: 0;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.7;
}

.testimonial-card footer {
    display: grid;
    gap: 5px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testimonial-card strong {
    font-family: var(--font-display);
    font-size: 1.08rem;
}

.testimonial-card span {
    color: var(--muted);
}

.store-band,
.cta {
    border: 1px solid rgba(168, 85, 247, .28);
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 20%, rgba(236, 72, 153, .20), transparent 34%),
        radial-gradient(circle at 84% 28%, rgba(34, 211, 238, .18), transparent 32%),
        linear-gradient(135deg, rgba(124, 58, 237, .20), rgba(37, 99, 235, .12)),
        rgba(255, 255, 255, .045);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    padding: 54px;
}

.store-band {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 54px;
    align-items: center;
}

.cta {
    display: block;
}

.band-copy {
    display: grid;
    gap: 22px;
    align-content: center;
}

.band-copy .section-kicker,
.band-copy p,
.band-copy .button-row {
    margin: 0;
}

.band-copy h2 {
    margin: 0;
    
}

.band-copy p {
    max-width: 620px;
    color: var(--text);
    font-weight: 650;
    line-height: 1.7;
}

.band-copy > .btn,
.band-copy .button-row {
    margin-top: 2px;
}

.band-copy > .btn {
    width: max-content;
}

.cta .band-copy {
    max-width: 820px;
}

.store-band h2,
.cta h2 {
    font-size: clamp(2.5rem, 4vw, 3.7rem);
}

.store-band .band-copy h2 {
    max-width: 540px;
    font-size: clamp(2rem, 3vw, 2.65rem);
    line-height: 1.08;
}

.mini-products {
    display: grid;
    gap: 14px;
    align-content: center;
}

.mini-products a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
}

.mini-products span {
    color: var(--success);
    font-weight: 900;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.process-line div {
    min-height: 168px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    font-weight: 900;
}

.process-line span {
    display: block;
    margin-bottom: 28px;
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.product-card {
    display: grid;
    overflow: hidden;
    padding: 0;
}

.product-thumb,
.product-image {
    aspect-ratio: 4 / 3;
    border-radius: 0;
}

.product-card > .category-label,
.product-card > h2,
.product-card > p,
.product-card > .price-stack,
.product-card > form {
    margin-inline: 26px;
}

.product-card > .category-label {
    margin-top: 24px;
}

.price-stack {
    display: grid;
    gap: 6px;
    align-content: start;
    margin-top: 18px;
}

.price-stack-detail {
    margin-top: 24px;
}

.promo-badge {
    width: max-content;
    border: 1px solid rgba(57, 255, 136, .34);
    border-radius: 8px;
    background: rgba(57, 255, 136, .10);
    color: var(--success);
    padding: 5px 8px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.price-original {
    color: var(--muted);
    font-size: .95rem;
    text-decoration: line-through;
}

.price-stack strong,
.price {
    color: var(--success);
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.product-card form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    margin-bottom: 26px;
}

.page-hero {
    padding-top: 92px;
    padding-bottom: 72px;
}

.page-hero h1,
.case-hero h1,
.product-detail h1 {
    max-width: 1200px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5.4vw, 4.6rem);
    line-height: .98;
    letter-spacing: -.04em;
}

.page-hero p,
.case-hero p,
.product-detail > div > p {
    max-width: 760px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 1.08rem;
}

.product-detail .product-formatted-text {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.legal-hero {
    max-width: 1180px;
}

.legal-hero h1 {
    max-width: 100%;
}

.legal-hero > p:not(.section-kicker) {
    max-width: 100%;
    text-align: justify;
}

.legal-updated {
    display: inline-flex;
    margin-top: 20px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-content {
    display: grid;
    gap: 14px;
    max-width: 1180px;
}

.legal-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--border);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(6, 182, 212, .06)), var(--surface);
}

.legal-card > span {
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
}

.legal-card h2 {
    margin: 0 0 10px;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.legal-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    text-align: justify;
    text-align-last: left;
}

.about-hero {
    text-align: center;
}

.about-hero .section-kicker,
.about-hero h1,
.about-hero p {
    margin-inline: auto;
}

.about-hero h1 {
    max-width: 1200px;
}

.tools-section .section-head {
    justify-content: center;
    text-align: center;
}

.tools-section .section-kicker {
    margin-inline: auto;
}

.tools-carousel {
    max-width: 680px;
    margin-inline: auto;
}

.tool-panel {
    min-height: 330px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 20% 10%, rgba(124, 58, 237, .22), transparent 36%),
        linear-gradient(135deg, rgba(34, 211, 238, .08), rgba(124, 58, 237, .08)),
        rgba(255, 255, 255, .045);
    box-shadow: var(--shadow-card);
}

.tool-panel h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1.08;
}

.case-hero {
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
}

.case-cover,
.case-image {
    aspect-ratio: 16 / 11;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.case-gallery figure {
    display: grid;
    gap: 10px;
    margin: 0;
}

.case-gallery img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
    box-shadow: var(--shadow-card);
}

.case-gallery figcaption {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

.case-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.case-meta span {
    padding: 12px;
    border: 1px solid var(--border);
    border-left: 2px solid var(--cyan);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: var(--muted);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.product-detail {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    align-items: start;
}

.product-detail img {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.price {
    display: block;
    margin: 24px 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.info-stack {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.info-stack div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
}

.info-stack .category-label {
    margin-bottom: 8px;
}

.checkout-grid,
.contact-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
}

.form-panel {
    display: grid;
    gap: 18px;
}

.form-panel label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 800;
}

.form-panel input,
.form-panel select,
.form-panel textarea,
.cart-row input,
.coupon-panel input,
.qty-input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
    color: var(--text);
    padding: 12px 14px;
}

.form-panel select {
    color-scheme: dark;
}

.form-panel select option {
    background: #10101c;
    color: #f5f7fa;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus,
.cart-row input:focus,
.coupon-panel input:focus,
.qty-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, .12);
}

.summary-panel {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.summary-panel h2 {
    margin-bottom: 18px;
    font-family: var(--font-display);
}

.summary-panel div,
.summary-panel footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.summary-panel footer {
    border-top: 2px solid rgba(168, 85, 247, .55);
    border-bottom: 0;
    font-size: 1.2rem;
}

.cart-table {
    display: grid;
    gap: 14px;
}

.service-page-hero {
    align-items: center;
}

.service-page-copy {
    display: grid;
    align-content: center;
    gap: 22px;
}

.service-page-copy h1 {
    margin-bottom: 0;
}

.service-page-copy > p:not(.section-kicker) {
    max-width: 650px;
}

.service-page-meta {
    margin-top: 14px;
    margin-bottom: 20px;
}

.service-page-meta span {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
}

.service-page-actions {
    margin-top: 2px;
}

.service-conversion-hero {
    grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
    align-items: center;
}

.service-hero-lead {
    color: var(--text);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1.35;
}

.service-quick-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-quick-points span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(34, 211, 238, .28);
    border-radius: 10px;
    background: rgba(34, 211, 238, .08);
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.service-hero-visual {
    position: relative;
}

.service-hero-visual .case-cover {
    display: block;
    aspect-ratio: 16 / 11;
    min-height: 360px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.service-visual-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: 260px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-sm);
    background: rgba(9, 13, 28, .82);
    backdrop-filter: blur(12px);
}

.service-visual-note span {
    display: block;
    margin-bottom: 5px;
    color: var(--cyan);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-visual-note strong {
    color: var(--text);
    line-height: 1.35;
}

.service-value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding-top: clamp(34px, 5vw, 64px);
}

.service-value-strip article,
.service-feature-grid article,
.service-panel,
.service-example-grid article,
.service-why-card,
.service-process-grid article,
.service-final-cta {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .04) inset;
}

.service-value-strip article {
    display: grid;
    gap: 9px;
    padding: 20px;
}

.service-value-strip span,
.service-feature-grid span,
.service-process-grid span {
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.service-value-strip strong {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.service-value-strip p,
.service-feature-grid p,
.service-panel p,
.service-panel li,
.service-example-grid p,
.service-why-card p,
.service-process-grid p,
.service-final-cta p {
    color: var(--muted);
    line-height: 1.65;
}

.service-detail-sections,
.service-examples-section,
.service-process-section {
    display: grid;
    gap: 24px;
}

.service-section-head {
    align-items: end;
}

.service-section-head > p {
    max-width: 460px;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.service-feature-grid article {
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 190px;
    padding: 18px;
}

.service-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-panel {
    padding: clamp(24px, 4vw, 34px);
}

.service-panel h2,
.service-why-card h2,
.service-final-cta h2 {
    margin: 10px 0 16px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    line-height: 1.05;
}

.service-panel-strong {
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .14), rgba(34, 211, 238, .08)),
        rgba(255, 255, 255, .045);
}

.service-check-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.service-check-list li {
    position: relative;
    padding-left: 24px;
}

.service-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 18px rgba(34, 211, 238, .45);
}

.service-example-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-example-grid article {
    min-height: 150px;
    padding: 22px;
}

.service-example-grid p {
    margin: 0;
}

.service-why-card {
    display: grid;
    gap: 14px;
    padding: clamp(28px, 5vw, 52px);
    background:
        radial-gradient(circle at 82% 16%, rgba(34, 211, 238, .16), transparent 34%),
        linear-gradient(135deg, rgba(124, 58, 237, .16), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .045);
}

.service-why-card p {
    max-width: 840px;
    font-size: 1.08rem;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.service-process-grid article {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 210px;
    padding: 18px;
}

.service-process-grid h3 {
    margin: 8px 0 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.service-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    padding: clamp(28px, 5vw, 48px);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .20), rgba(34, 211, 238, .10)),
        rgba(255, 255, 255, .045);
}

.service-final-cta h2 {
    max-width: 780px;
}

.service-final-cta p {
    max-width: 720px;
}

.service-info-grid article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 180px;
}

.service-info-grid .category-label {
    margin-bottom: 0;
}

.service-related-section {
    padding-top: clamp(70px, 8vw, 110px);
}

.service-related-section .product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}

.service-related-section .product-card > div {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 24px;
}

.service-related-section .product-card h3,
.service-related-section .product-card p {
    margin: 0;
}

.service-related-section .product-card .btn {
    width: max-content;
    margin-top: 8px;
}

.cart-row,
.cart-total {
    display: grid;
    grid-template-columns: 1fr 110px 150px auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
}

.cart-total {
    grid-template-columns: 1fr auto;
    border-color: rgba(168, 85, 247, .4);
    font-size: 1.2rem;
}

.cart-remove {
    width: max-content;
    border: 1px solid rgba(236, 72, 153, .24);
    border-radius: 10px;
    background: rgba(236, 72, 153, .08);
    color: #f9a8d4;
    cursor: pointer;
    padding: 10px 12px;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: border-color .22s ease, background .22s ease, color .22s ease;
}

.cart-remove:hover {
    border-color: rgba(236, 72, 153, .58);
    background: rgba(236, 72, 153, .15);
    color: #fff;
}

.contact-side {
    display: grid;
    align-content: start;
    gap: 10px;
}

.contact-side a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--cyan);
    font-weight: 900;
}

.contact-flow {
    display: grid;
    gap: 26px;
    max-width: 920px;
}

.contact-flow .form-panel,
.contact-flow .contact-channels {
    position: static;
}

.contact-channels {
    gap: 14px;
}

.contact-channels .category-label {
    margin-bottom: 0;
}

.contact-channels h2 {
    margin-bottom: 0;
}

.contact-channels p {
    max-width: 760px;
    color: var(--muted);
}

.contact-channels .contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 10px 0 0;
    border: 0;
}

.contact-channels .contact-channel-grid a {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
}

.contact-channels .contact-channel-grid span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.contact-channels .contact-channel-grid strong {
    color: var(--cyan);
    font-size: .96rem;
    overflow-wrap: anywhere;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: min(var(--container), calc(100% - 64px));
    margin-inline: auto;
    padding: 46px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.site-footer strong {
    color: var(--text);
}

.site-footer p {
    max-width: 540px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    color: var(--muted);
    font-weight: 800;
}

.footer-links a:hover {
    color: var(--cyan);
}

.flash {
    width: min(var(--container), calc(100% - 64px));
    margin: 18px auto 0;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .055);
}

.flash.success {
    border-color: rgba(57, 255, 136, .45);
}

.flash.error {
    border-color: rgba(236, 72, 153, .45);
}

.maintenance-page {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    justify-items: center;
}

.maintenance-shell {
    width: min(1120px, 100%);
    padding: clamp(28px, 6vw, 72px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .22), rgba(37, 99, 235, .16)),
        rgba(16, 16, 28, .84);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.maintenance-shell h1 {
    margin: 0 0 22px;
    max-width: 980px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.4rem);
    line-height: .94;
}

.maintenance-shell p:not(.section-kicker) {
    max-width: 860px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 45;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(168, 85, 247, .55);
    border-radius: 14px;
    background: var(--gradient-primary);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.reveal {
    opacity: 1;
}

.customer-auth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
    gap: clamp(24px, 4vw, 48px);
}

.customer-auth-grid .summary-panel {
    position: static;
}

.customer-auth-side {
    margin-left: 0;
}

.customer-auth-link {
    width: fit-content;
    color: #a855f7;
    font-size: .9rem;
    font-weight: 900;
}

.customer-auth-link:hover {
    color: #c4b5fd;
}

.customer-auth-hero h1,
.customer-dashboard-hero h1 {
    max-width: 1200px;
}

.form-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.customer-dashboard {
    display: grid;
    gap: 22px;
}

.customer-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.customer-empty,
.customer-order-card,
.customer-timeline {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
    box-shadow: var(--shadow-card);
    padding: 24px;
}

.customer-empty {
    display: grid;
    gap: 14px;
    max-width: 680px;
}

.customer-empty h2,
.customer-order-card h2,
.customer-detail-panel h2,
.customer-timeline h2 {
    font-family: var(--font-display);
}

.customer-order-list {
    display: grid;
    gap: 14px;
}

.customer-order-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
}

.customer-order-card span,
.customer-order-card p,
.customer-list span,
.customer-timeline span {
    color: var(--muted);
}

.customer-order-card h2 {
    margin: 6px 0;
}

.customer-order-detail {
    display: grid;
    gap: 24px;
}

.customer-detail-panel {
    position: static;
}

.customer-detail-panel h3 {
    margin-top: 24px;
    font-family: var(--font-display);
}

.customer-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.customer-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.customer-list a {
    color: var(--cyan);
    font-weight: 900;
}

.customer-timeline {
    display: grid;
    gap: 16px;
}

.customer-timeline ol {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.customer-timeline li {
    padding-left: 18px;
    border-left: 2px solid rgba(34, 211, 238, .42);
}

.customer-timeline time {
    display: block;
    margin-bottom: 7px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.customer-timeline p {
    margin: 6px 0;
    color: var(--muted);
    line-height: 1.65;
}

.coupon-panel {
    margin-top: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
}

.coupon-panel form {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
}

.coupon-panel label {
    flex: 1 1 260px;
}

.coupon-panel input {
    color-scheme: dark;
}

.coupon-panel input::placeholder {
    color: var(--muted);
    opacity: .86;
}

.cart-total-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 18px;
    margin-top: 18px;
}

.checkout-briefing,
.briefing-grid,
.order-progress {
    display: grid;
    gap: 14px;
}

.smart-briefing {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(34, 211, 238, .24);
    border-radius: var(--radius-sm);
    background: rgba(34, 211, 238, .055);
}

.smart-briefing h3,
.proposal-detail-panel h2,
.proposal-accept-panel h2,
.customer-proposal-list h2 {
    margin: 0;
    font-family: var(--font-display);
}

.smart-briefing p,
.smart-briefing small,
.proposal-detail-panel p,
.proposal-accept-panel p {
    color: var(--muted);
    line-height: 1.6;
}

.briefing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.briefing-grid article,
.order-progress li {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .035);
}

.order-progress {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-progress li {
    position: relative;
    display: grid;
    align-content: start;
    gap: 8px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
}

.order-progress li span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: var(--muted);
}

.order-progress li small {
    color: var(--muted);
    font-weight: 700;
    line-height: 1.45;
}

.order-progress li.active {
    border-color: rgba(34, 211, 238, .55);
    color: var(--text);
    background: rgba(34, 211, 238, .1);
}

.order-progress li.active span {
    background: var(--gradient-primary);
    color: #fff;
}

.order-progress li.current {
    border-color: rgba(168, 85, 247, .62);
    box-shadow: 0 16px 44px rgba(124, 58, 237, .16);
}

.proposal-detail-panel section {
    display: grid;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.proposal-accept-panel .form-panel {
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.estimate-price {
    display: block;
    margin: 18px 0 10px;
    color: var(--green);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.scope-guide {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(34, 211, 238, .24);
    border-radius: var(--radius-sm);
    background: rgba(34, 211, 238, .06);
}

.scope-guide strong,
.scope-guide b {
    color: var(--text);
}

.scope-guide p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.scope-guide div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.scope-guide span {
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .045);
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.45;
}

.service-final-cta {
    margin-top: clamp(42px, 6vw, 84px);
}

.service-products-section {
    margin-top: clamp(30px, 5vw, 72px);
    padding-top: clamp(54px, 7vw, 96px);
}

.service-products-section .section-head {
    margin-bottom: clamp(24px, 4vw, 42px);
}

.service-products-section .products-grid {
    align-items: stretch;
    gap: clamp(18px, 2.2vw, 30px);
}

.service-products-section .product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
}

.service-products-section .product-card > img {
    width: 100%;
    min-height: 240px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-products-section .product-card > div {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 24px;
}

.service-products-section .product-card h3,
.service-products-section .product-card p {
    margin: 0;
}

.service-products-section .product-thumb,
.service-products-section .product-image {
    min-height: 240px;
}

.service-products-section .product-card p {
    min-height: 3.6em;
}

.service-products-section .product-card .btn {
    width: max-content;
    margin-top: 8px;
}

.cart-card-list {
    gap: 16px;
}

.cart-row {
    grid-template-columns: minmax(0, 1fr) 150px 170px auto;
    align-items: center;
    padding: clamp(18px, 2.2vw, 26px);
}

.cart-item-main,
.cart-item-subtotal,
.cart-qty-field {
    display: grid;
    gap: 7px;
}

.cart-item-eyebrow,
.cart-item-subtotal span,
.cart-qty-field span {
    color: var(--cyan);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-item-main strong {
    color: var(--text);
    font-size: 1.08rem;
}

.cart-item-main small {
    color: var(--muted);
    font-weight: 700;
}

.cart-qty-field {
    color: var(--text);
    font-weight: 900;
}

.cart-qty-field input {
    text-align: center;
}

.cart-item-subtotal strong {
    font-size: 1.1rem;
}

.cart-update-row {
    display: flex;
    justify-content: flex-end;
}

.coupon-panel {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.coupon-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
}

.coupon-panel-head h2 {
    margin: 6px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.coupon-panel-head > strong {
    padding: 8px 11px;
    border: 1px solid rgba(57, 255, 136, .28);
    border-radius: var(--radius-sm);
    background: rgba(57, 255, 136, .08);
    color: var(--green);
}

.coupon-description {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.available-coupons {
    display: grid;
    gap: 12px;
}

.available-coupons h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.available-coupons > div {
    display: grid;
    gap: 10px;
}

.available-coupons article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .035);
}

.available-coupons article p,
.available-coupons article small {
    display: block;
    margin: 5px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.available-coupons article form {
    display: block;
}

.clean-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.clean-list li {
    padding-left: 14px;
    border-left: 2px solid rgba(34, 211, 238, .45);
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 820px) {
    .briefing-grid,
    .order-progress,
    .service-conversion-hero,
    .service-value-strip,
    .service-two-column,
    .service-final-cta {
        grid-template-columns: 1fr;
    }

    .service-feature-grid,
    .service-example-grid,
    .service-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scope-guide div,
    .cart-row,
    .available-coupons article {
        grid-template-columns: 1fr;
    }

    .cart-update-row,
    .coupon-panel-head {
        justify-content: flex-start;
    }

    .service-hero-visual .case-cover {
        min-height: 260px;
    }

    .service-final-cta {
        align-items: start;
    }
}

@media (max-width: 560px) {
    .service-feature-grid,
    .service-example-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-visual-note {
        position: static;
        max-width: none;
        margin-top: 12px;
    }

    .service-quick-points span {
        width: 100%;
        justify-content: center;
    }
}
