:root {
    --brand-ink: #0b1020;
    --brand-text: #4d5a70;
    --brand-muted: #7a879d;
    --brand-line: rgba(11, 16, 32, 0.08);
    --brand-soft: #f5f8fc;
    --brand-accent: #46c06b;
    --brand-accent-strong: #2e9a52;
    --brand-blue: #0f4c9a;
    --brand-blue-deep: #0a3268;
    --brand-surface: rgba(255, 255, 255, 0.82);
    --brand-surface-strong: #ffffff;
    --brand-gradient: linear-gradient(135deg, #0b1020 0%, #0f4c9a 60%, #46c06b 100%);
    --brand-glow: linear-gradient(140deg, rgba(15, 76, 154, 0.1), rgba(70, 192, 107, 0.08));
    --shadow-soft: 0 18px 45px rgba(11, 16, 32, 0.08);
    --shadow-card: 0 22px 50px rgba(11, 16, 32, 0.08);
    --shadow-hover: 0 28px 70px rgba(15, 76, 154, 0.14);
    --shadow-glow: 0 28px 90px rgba(15, 76, 154, 0.18);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-pill: 999px;
}

body {
    color: var(--brand-text);
    background:
        radial-gradient(circle at top left, rgba(15, 76, 154, 0.1), transparent 32%),
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #f5f8fc 55%, #f8fafc 100%);
}

.site-backdrop {
    background:
        radial-gradient(circle at 10% 10%, rgba(15, 76, 154, 0.12), transparent 26%),
        radial-gradient(circle at 90% 0%, rgba(70, 192, 107, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.88), rgba(245, 248, 252, 0.96));
}

.site-main {
    position: relative;
    overflow: clip;
}

.container {
    position: relative;
}

.section {
    padding: 112px 0;
}

.section-sm {
    padding: 84px 0;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(245, 248, 252, 0.8)),
        var(--brand-glow);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--brand-ink);
    letter-spacing: -0.03em;
}

p {
    color: var(--brand-text);
}

.eyebrow {
    background: rgba(15, 76, 154, 0.08);
    color: var(--brand-blue);
    border: 1px solid rgba(15, 76, 154, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.section-shell,
.trust-panel,
.content-panel,
.contact-card,
.service-card,
.case-card,
.team-card,
.testimonial-card,
.blog-card,
.feature-card,
.value-card,
.pricing-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
    border: 1px solid rgba(15, 34, 65, 0.08);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
}

.section-shell,
.trust-panel {
    padding: 2rem;
    border-radius: calc(var(--radius-xl) + 2px);
}

.service-card,
.case-card,
.team-card,
.testimonial-card,
.blog-card,
.feature-card,
.value-card,
.content-panel,
.contact-card {
    overflow: hidden;
}

.pricing-showcase .pricing-card {
    overflow: visible;
}

.service-card::before,
.case-card::before,
.team-card::before,
.testimonial-card::before,
.blog-card::before,
.feature-card::before,
.value-card::before,
.content-panel::before,
.contact-card::before,
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 76, 154, 0), rgba(15, 76, 154, 0.18), rgba(70, 192, 107, 0));
}

.service-card:hover,
.case-card:hover,
.team-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.feature-card:hover,
.value-card:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-link {
    color: var(--brand-blue-deep);
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover svg {
    transform: translateX(4px);
}

.icon-wrap {
    background: linear-gradient(180deg, rgba(15, 76, 154, 0.1), rgba(70, 192, 107, 0.08));
    color: var(--brand-blue);
    border: 1px solid rgba(15, 76, 154, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn {
    border-radius: 18px;
    padding: 0.9rem 1.35rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-gradient {
    position: relative;
    background: linear-gradient(135deg, #0b1020 0%, #0f4c9a 62%, #46c06b 100%);
    box-shadow: 0 18px 40px rgba(15, 76, 154, 0.22);
}

.btn-gradient:hover,
.btn-gradient:focus {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(15, 76, 154, 0.26);
}

.btn-outline-brand {
    border: 1px solid rgba(15, 76, 154, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-ink);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    border-color: rgba(15, 76, 154, 0.24);
    background: rgba(15, 76, 154, 0.05);
    color: var(--brand-blue);
}

.btn-link-dark {
    color: var(--brand-ink);
}

.site-header {
    --topbar-collapse: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: 0 10px 30px rgba(11, 16, 32, 0.04);
    transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header .container {
    max-width: 1400px;
    padding: 0 24px;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(11, 16, 32, 0.08);
    border-bottom-color: rgba(15, 76, 154, 0.12);
}

.site-topbar {
    max-height: calc(74px * (1 - var(--topbar-collapse)));
    overflow: hidden;
    background: linear-gradient(90deg, #17377f 0%, #49249a 54%, #5d2bc3 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: calc(1 - var(--topbar-collapse));
    transform: translateY(calc(-10px * var(--topbar-collapse)));
    transition: max-height 0.14s linear, opacity 0.14s linear, transform 0.14s linear, border-color 0.14s linear;
}

.site-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.45rem 0;
}

.site-topbar__copy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.site-topbar__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-topbar__copy strong {
    color: #ffffff;
    font-weight: 700;
}

.site-topbar__copy a {
    color: #ffffff;
    text-decoration: none;
}

.site-topbar__copy a:hover,
.site-topbar__copy a:focus {
    color: #ffffff;
    text-decoration: underline;
}

.site-topbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2fd06c, #19a34f);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 26px rgba(20, 163, 74, 0.22);
}

.site-topbar__cta:hover,
.site-topbar__cta:focus {
    color: #ffffff;
    transform: translateY(-1px);
}

.navbar {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: calc(0.82rem - (0.28rem * var(--topbar-collapse))) 0;
    box-shadow: none;
    transition: padding 0.14s linear;
}

.brand-mark {
    color: var(--brand-ink);
    padding: 0.2rem 0;
}

.brand-mark__video {
    height: calc(64px - (14px * var(--topbar-collapse)));
    transition: height 0.14s linear;
}

.brand-mark__image {
    height: calc(64px - (14px * var(--topbar-collapse)));
    transition: height 0.14s linear;
}

.nav-primary {
    gap: 1.3rem;
}

.nav-link {
    border-radius: 0;
    color: #5d6b82;
    padding: 0.2rem 0 !important;
    background: transparent !important;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus-visible,
.nav-link--dropdown.active,
.nav-item--dropdown:hover > .nav-link--dropdown,
.nav-item--dropdown:focus-within > .nav-link--dropdown {
    background: transparent !important;
    color: var(--brand-blue-deep);
}

.nav-primary .nav-link.active,
.nav-primary .nav-link:hover,
.nav-primary .nav-link:focus-visible,
.nav-primary .nav-link--dropdown.active,
.nav-primary .nav-item--dropdown:hover > .nav-link--dropdown,
.nav-primary .nav-item--dropdown:focus-within > .nav-link--dropdown {
    background: transparent !important;
    color: #355ddf;
}

.header-actions {
    gap: 0.55rem !important;
}

.btn-support-ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #6216ca 0%, #7e22e4 100%);
    border: 1px solid rgba(98, 22, 202, 0.22);
    box-shadow: 0 18px 36px rgba(98, 22, 202, 0.2);
}

.btn-support-ticket:hover,
.btn-support-ticket:focus {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(98, 22, 202, 0.24);
}

.header-actions .btn-link-dark {
    background: rgba(15, 76, 154, 0.04);
    border-radius: 14px;
}

.header-cart-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 1px solid rgba(15, 76, 154, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.92));
    color: var(--brand-ink);
    box-shadow: 0 16px 30px rgba(15, 76, 154, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-cart-toggle:hover,
.header-cart-toggle:focus {
    transform: translateY(-2px);
    border-color: rgba(53, 93, 223, 0.24);
    box-shadow: 0 20px 36px rgba(53, 93, 223, 0.12);
}

.header-cart-toggle__icon {
    display: inline-flex;
    width: 24px;
    height: 24px;
}

.header-cart-toggle__icon svg {
    width: 100%;
    height: 100%;
}

.header-cart-toggle__count {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #355ddf;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(53, 93, 223, 0.24);
}

.page-shop {
    --pricing-accent: #355ddf;
    --pricing-accent-soft: rgba(53, 93, 223, 0.1);
    --pricing-line: rgba(53, 93, 223, 0.18);
    --pricing-button-bg: rgba(53, 93, 223, 0.08);
}

.page-shop .shop-catalog-section {
    padding-top: 52px;
    padding-bottom: 88px;
}

.shop-marketplace {
    display: grid;
    gap: 2rem;
}

.shop-marketplace__hero {
    display: grid;
    justify-items: center;
    gap: 1.15rem;
    padding: clamp(1.75rem, 3.2vw, 2.7rem);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(53, 93, 223, 0.08), transparent 26%),
        radial-gradient(circle at bottom right, rgba(22, 184, 117, 0.09), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.92));
    box-shadow: 0 28px 56px rgba(148, 163, 184, 0.14);
    text-align: center;
}

.shop-marketplace__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(22, 184, 117, 0.12);
    color: #119669;
    font-family: 'Outfit', sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-marketplace__hero h1 {
    margin: 0;
    color: #2a3b52;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 4.6vw, 4.3rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.96;
    text-transform: uppercase;
}

.shop-marketplace__subtitle {
    max-width: 840px;
    margin: 0;
    color: #3f3f46;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    font-weight: 600;
    line-height: 1.38;
}

.shop-marketplace__search-wrap {
    width: min(100%, 940px);
}

.shop-marketplace__search {
    width: 100%;
    min-height: 64px;
    padding: 0 1.35rem;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    font-weight: 700;
}

.shop-marketplace__search::placeholder {
    color: #737373;
}

.shop-marketplace__search:focus {
    outline: none;
    border-color: rgba(22, 184, 117, 0.46);
    box-shadow:
        0 0 0 4px rgba(22, 184, 117, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.shop-marketplace__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.shop-marketplace__filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.8rem 1.35rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    color: #3f3f46;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.92rem, 1.1vw, 1.02rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.shop-marketplace__filter:hover,
.shop-marketplace__filter:focus {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
}

.shop-marketplace__filter.is-active {
    border-color: transparent;
    background: #16c79a;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(22, 199, 154, 0.24);
}

.shop-marketplace__trail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
}

.shop-marketplace__trail-path {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #71717a;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.shop-marketplace__trail-path strong {
    color: var(--brand-ink);
}

.shop-marketplace__trail-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0.82rem;
    border-radius: 999px;
    background: rgba(22, 184, 117, 0.12);
    color: #17a56f;
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.shop-empty-state--results {
    margin-top: 0.5rem;
}

.hero--premium {
    padding: 150px 0 88px;
}

.hero--premium::before,
.hero--premium::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(8px);
}

.hero--premium::before {
    width: 360px;
    height: 360px;
    right: -70px;
    top: 40px;
    background: radial-gradient(circle, rgba(15, 76, 154, 0.22), transparent 66%);
}

.hero--premium::after {
    width: 320px;
    height: 320px;
    left: -90px;
    top: 10px;
    background: radial-gradient(circle, rgba(70, 192, 107, 0.18), transparent 70%);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy--centered {
    max-width: 1160px;
    margin: 0 auto;
    text-align: center;
}

.page-home .hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.7rem);
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.page-home .hero p.lead {
    max-width: 880px;
    font-size: 1.08rem;
    color: #536176;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0 0 2rem;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 76, 154, 0.08);
    color: var(--brand-ink);
    font-size: 0.84rem;
    font-weight: 600;
}

.hero-trust-row--centered {
    justify-content: center;
}

.hero-panel {
    background:
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.16), transparent 32%),
        radial-gradient(circle at bottom left, rgba(15, 76, 154, 0.18), transparent 34%),
        linear-gradient(155deg, rgba(11, 16, 32, 0.98), rgba(10, 50, 104, 0.96));
    box-shadow: var(--shadow-glow);
}

.hero-panel__label {
    background: rgba(255, 255, 255, 0.12);
}

.hero-cert-copy {
    margin: 0 0 1.35rem;
    color: var(--brand-ink);
    font-size: 1rem;
    font-weight: 600;
}

.hero-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto;
    max-width: 1120px;
}

.hero-partner-card {
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    padding: 1.3rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.hero-partner-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15, 76, 154, 0.08), rgba(70, 192, 107, 0.12));
    color: var(--brand-blue);
    border: 1px solid rgba(15, 76, 154, 0.08);
}

.hero-partner-card__icon svg {
    width: 22px;
    height: 22px;
}

.hero-partner-card__icon-image {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.hero-partner-card strong {
    color: var(--brand-ink);
    font-size: 1.1rem;
}

.hero-partner-card span {
    color: var(--brand-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-dashboard {
    position: relative;
    padding: 2rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.16), transparent 35%),
        radial-gradient(circle at bottom left, rgba(15, 76, 154, 0.18), transparent 34%),
        linear-gradient(155deg, rgba(11, 16, 32, 0.98), rgba(10, 50, 104, 0.96));
    color: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-glow);
    overflow: hidden;
}

.hero-dashboard::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hero-dashboard h2,
.hero-dashboard h3,
.hero-dashboard p,
.hero-dashboard strong,
.hero-dashboard span,
.hero-dashboard small {
    color: inherit;
}

.hero-dashboard__topbar,
.hero-dashboard__summary,
.hero-dashboard__channels,
.hero-dashboard__results {
    position: relative;
    z-index: 1;
}

.hero-dashboard__topbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.hero-dashboard__label,
.hero-dashboard__status {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-dashboard__label {
    background: rgba(255, 255, 255, 0.12);
}

.hero-dashboard__status {
    background: rgba(70, 192, 107, 0.16);
    color: #9ff0b5;
}

.hero-dashboard__headline h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    margin-bottom: 0.9rem;
}

.hero-dashboard__headline p {
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 0;
}

.hero-dashboard__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 1rem;
    margin: 1.6rem 0;
}

.hero-dashboard__score,
.hero-dashboard__insight,
.hero-channel-card,
.hero-dashboard__result {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.15rem;
}

.hero-dashboard__score span,
.hero-dashboard__insight span,
.hero-dashboard__result span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.hero-dashboard__score strong {
    display: block;
    margin: 0.45rem 0;
    font-size: 2.2rem;
    line-height: 1;
}

.hero-dashboard__score small,
.hero-dashboard__insight p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero-dashboard__channels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.hero-channel-card {
    display: grid;
    gap: 0.45rem;
}

.hero-channel-card__tag {
    color: #96bdf4;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-channel-card strong {
    font-size: 1rem;
}

.hero-channel-card p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

.hero-dashboard__results {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero-dashboard__result strong {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.05rem;
}

.proof-band {
    padding: 0 0 26px;
}

.proof-band__inner {
    display: grid;
    gap: 1.1rem;
    padding: 1.3rem 1.6rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.proof-band__label {
    margin: 0;
    color: var(--brand-ink);
    font-size: 0.98rem;
    font-weight: 600;
}

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.logo-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.8rem 1.1rem;
    border-radius: 18px;
    background: rgba(11, 16, 32, 0.03);
    border: 1px solid rgba(11, 16, 32, 0.06);
    color: var(--brand-muted);
    font-weight: 700;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.text-gradient,
.page-home .section-intro h2 {
    background: linear-gradient(135deg, #8a2be2 0%, #2f6bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-home .section-intro h2 {
    display: inline-block;
}

.services-showcase-panel {
    padding: 2.3rem;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(70, 192, 107, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(138, 43, 226, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.services-showcase-panel__intro {
    max-width: 760px;
    margin-bottom: 2.6rem;
}

.services-showcase-panel__intro h2 {
    margin-bottom: 1rem;
}

.services-showcase-panel__intro p {
    max-width: 720px;
    margin: 0 auto;
}

.page-home .section-intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-home .section-intro p {
    margin-left: auto;
    margin-right: auto;
}

.page-home .section-intro.d-flex {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    gap: 1rem;
}

.page-home .section-intro.d-flex > :first-child {
    max-width: 760px;
}

.page-home .section-intro .btn {
    margin-left: auto;
    margin-right: auto;
}

.services-showcase .section-shell {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
        var(--brand-glow);
}

.service-grid--premium,
.case-grid--premium,
.blog-grid--premium {
    gap: 1.6rem;
}

.service-card--premium,
.case-card--premium,
.blog-card--premium {
    display: flex;
    flex-direction: column;
}

.service-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.service-card__pill,
.case-card__metric {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 76, 154, 0.08);
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 700;
}

.service-card__points {
    display: grid;
    gap: 0.55rem;
    margin: 1.1rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.service-card__points li {
    display: flex;
    align-items: start;
    gap: 0.55rem;
    color: var(--brand-ink);
    font-weight: 600;
}

.service-card__points li::before {
    content: '';
    width: 9px;
    height: 9px;
    margin-top: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-accent));
    flex-shrink: 0;
}

.service-grid--showcase {
    gap: 1.35rem;
}

.service-card--showcase {
    --service-surface: rgba(255, 255, 255, 0.95);
    --service-border: rgba(15, 76, 154, 0.1);
    --service-accent-start: #22c55e;
    --service-accent-end: #0ea5e9;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.75rem;
    border-radius: 26px;
    background:
        linear-gradient(180deg, var(--service-surface), rgba(255, 255, 255, 0.88)),
        rgba(255, 255, 255, 0.9);
    border: 1px solid var(--service-border);
    box-shadow: 0 18px 40px rgba(11, 16, 32, 0.06);
    transform: translateY(0) scale(1);
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.32s ease,
        background 0.32s ease;
    will-change: transform, box-shadow;
}

.service-card--showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.5), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 44%);
    opacity: 0;
    transition: opacity 0.38s ease;
    pointer-events: none;
    z-index: -1;
}

.service-card--showcase:hover,
.service-card--showcase:focus-within {
    transform: translateY(-14px) scale(1.012);
    box-shadow: 0 30px 58px rgba(11, 16, 32, 0.14);
    border-color: rgba(15, 76, 154, 0.16);
}

.service-card--showcase:hover::after,
.service-card--showcase:focus-within::after {
    opacity: 1;
}

.service-card__icon {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: 0 14px 24px rgba(11, 16, 32, 0.06);
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.32s ease;
}

.service-card--showcase:hover .service-card__icon,
.service-card--showcase:focus-within .service-card__icon {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 20px 34px rgba(11, 16, 32, 0.1);
    border-color: rgba(15, 76, 154, 0.14);
}

.service-card__icon .icon-wrap__image--contain {
    padding: 1rem;
}

.service-card--showcase h3 {
    margin-bottom: 0.9rem;
    font-size: 1.45rem;
}

.service-card--showcase p {
    margin-bottom: 1.2rem;
    color: #55627a;
}

.service-card__points--showcase {
    gap: 0.7rem;
    margin: 0 0 1.55rem;
}

.service-card__points--showcase li {
    color: var(--brand-ink);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.5;
}

.service-card__points--showcase li::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 0.02rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid var(--service-accent-start);
    color: var(--service-accent-start);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, 0.96),
        0 8px 16px rgba(15, 76, 154, 0.08);
}

.service-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    margin-top: auto;
    padding: 0.95rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--service-accent-start), var(--service-accent-end));
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(15, 76, 154, 0.18);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.3s ease;
}

.service-card__cta:hover,
.service-card__cta:focus {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 32px rgba(15, 76, 154, 0.22);
    filter: saturate(1.05);
}

.service-card__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card--showcase:hover .service-card__cta svg,
.service-card--showcase:focus-within .service-card__cta svg {
    transform: translateX(4px);
}

.service-tone-1 {
    --service-surface: rgba(234, 250, 243, 0.92);
    --service-border: rgba(34, 197, 94, 0.15);
    --service-accent-start: #22c55e;
    --service-accent-end: #0ea5e9;
}

.service-tone-2 {
    --service-surface: rgba(234, 241, 255, 0.92);
    --service-border: rgba(59, 130, 246, 0.14);
    --service-accent-start: #3b82f6;
    --service-accent-end: #4f46e5;
}

.service-tone-3 {
    --service-surface: rgba(255, 248, 220, 0.92);
    --service-border: rgba(245, 158, 11, 0.16);
    --service-accent-start: #f59e0b;
    --service-accent-end: #fbbf24;
}

.service-tone-4 {
    --service-surface: rgba(248, 238, 255, 0.92);
    --service-border: rgba(168, 85, 247, 0.14);
    --service-accent-start: #a855f7;
    --service-accent-end: #ec4899;
}

.service-tone-5 {
    --service-surface: rgba(255, 243, 232, 0.92);
    --service-border: rgba(249, 115, 22, 0.14);
    --service-accent-start: #f97316;
    --service-accent-end: #ef4444;
}

.service-tone-6 {
    --service-surface: rgba(236, 253, 245, 0.92);
    --service-border: rgba(16, 185, 129, 0.14);
    --service-accent-start: #10b981;
    --service-accent-end: #14b8a6;
}

.why-section__grid,
.about-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: start;
}

.why-section__intro {
    position: sticky;
    top: 110px;
    padding: 2rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.88)),
        var(--brand-glow);
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.why-section__summary,
.about-preview__points,
.cta-panel__meta,
.page-banner__highlights,
.footer-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.why-section__summary span,
.about-preview__points span,
.cta-panel__meta span,
.page-banner__highlights span,
.footer-pill-list span {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.88rem;
    border-radius: var(--radius-pill);
    background: rgba(15, 76, 154, 0.06);
    border: 1px solid rgba(15, 76, 154, 0.08);
    color: var(--brand-ink);
    font-size: 0.84rem;
    font-weight: 600;
}

.feature-grid--premium {
    gap: 1.35rem;
}

.feature-card {
    padding: 1.7rem;
}

.case-card__metric {
    margin-bottom: 0.95rem;
}

.results-showcase .metric-list {
    margin-top: 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    position: relative;
    padding: 1.55rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    padding: 0 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 76, 154, 0.1), rgba(70, 192, 107, 0.12));
    color: var(--brand-blue);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.testimonial-grid--premium {
    gap: 1.35rem;
}

.testimonial-card--premium {
    display: grid;
    gap: 1rem;
    padding: 1.7rem;
}

.testimonial-card__rating {
    display: flex;
    gap: 0.38rem;
}

.testimonial-card__rating span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    color: #ffb703;
    line-height: 1;
}

.testimonial-card__rating span::before {
    content: '★';
    font-size: 1.55rem;
    text-shadow: 0 4px 12px rgba(255, 183, 3, 0.22);
}

.testimonial-card__author strong {
    display: block;
    color: var(--brand-ink);
}

.about-preview__team {
    display: grid;
    gap: 1.2rem;
}

.about-preview__founder {
    padding: 1.7rem;
}

.team-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.team-grid--compact .team-card {
    padding: 1.35rem;
}

.blog-card__meta {
    margin: 0 0 1rem;
    color: var(--brand-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.page-banner {
    padding: 118px 0 66px;
}

.page-banner__inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 1.9rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(15, 76, 154, 0.14), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.88));
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.page-banner__inner h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.page-banner__inner .hero-actions {
    justify-content: center;
}

.page-banner__inner p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.page-banner__highlights {
    justify-content: center;
}

.page-banner__card {
    height: 100%;
    padding: 1.6rem;
    border-radius: 26px;
    background: linear-gradient(150deg, rgba(11, 16, 32, 0.98), rgba(10, 50, 104, 0.95));
    box-shadow: var(--shadow-glow);
}

.page-banner__card-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.48rem 0.82rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-banner__card h2 {
    color: #ffffff;
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.page-banner__list {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-banner__list li {
    position: relative;
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.74);
}

.page-banner__list li::before {
    content: '';
    position: absolute;
    top: 0.64rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #7ddf9b;
}

.cta-panel {
    position: relative;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    padding: 2.5rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(135deg, #0b1020 0%, #0f4c9a 62%, #46c06b 100%);
    box-shadow: var(--shadow-glow);
}

.cta-panel__content,
.cta-panel__actions {
    position: relative;
    z-index: 1;
}

.cta-panel__meta span {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}

.cta-panel__note {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.site-footer {
    padding: 48px 0 28px;
}

.site-footer .container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.08), transparent 20%),
        radial-gradient(circle at top left, rgba(15, 76, 154, 0.1), transparent 25%),
        linear-gradient(180deg, rgba(11, 16, 32, 0.98), rgba(10, 35, 72, 0.96));
    box-shadow: var(--shadow-glow);
    z-index: 0;
}

.site-footer .container {
    padding: 2rem;
}

.site-footer .container > * {
    position: relative;
    z-index: 1;
}

.footer-grid {
    grid-template-columns: minmax(240px, 1.22fr) repeat(4, minmax(135px, 0.82fr));
    column-gap: clamp(1.2rem, 2vw, 2.2rem);
    row-gap: 2rem;
    align-items: start;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.footer-grid__brand {
    grid-column: 1;
}

.footer-grid__important {
    grid-column: 2;
}

.footer-grid__quick {
    grid-column: 3;
}

.footer-grid__services {
    grid-column: 4;
}

.footer-grid__contact {
    grid-column: 5;
    grid-row: 1;
}

.site-footer,
.site-footer p,
.site-footer h3,
.site-footer a,
.site-footer li {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer h3,
.site-footer .brand-mark {
    color: #ffffff;
}

.footer-eyebrow {
    margin-bottom: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

.footer-description {
    max-width: 420px;
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-pill-list span {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 1.3rem;
}

.footer-socials a,
.footer-bottom__links a {
    color: #ffffff;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover,
.footer-bottom__links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.site-footer .btn-outline-brand {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.site-footer .btn-outline-brand:hover,
.site-footer .btn-outline-brand:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.site-footer .btn-link-dark {
    color: rgba(255, 255, 255, 0.86);
}

.footer-bottom__links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.footer-bottom__legal {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom__legal > span {
    color: rgba(255, 255, 255, 0.34);
}

.footer-bottom__links span {
    color: rgba(255, 255, 255, 0.34);
}

.footer-bottom__links a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    background: transparent;
}

.footer-bottom__links a:hover,
.footer-bottom__links a:focus {
    background: transparent;
    color: #ffffff;
}

.footer-contact {
    gap: 1rem;
    max-width: none;
}

.footer-contact__item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: start;
    gap: 0.85rem;
}

.footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #ffc13d;
}

.footer-contact__icon svg {
    width: 24px;
    height: 24px;
}

.footer-contact__text {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.58;
}

.footer-contact__text:hover,
.footer-contact__text:focus {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-payment-strip {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 320px;
    margin-left: auto;
}

.footer-payment-strip img {
    display: block;
    width: min(100%, 340px);
    height: auto;
}

.footer-scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(6, 12, 28, 0.24);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-scroll-top:hover,
.footer-scroll-top:focus {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.footer-scroll-top svg {
    width: 22px;
    height: 22px;
    transform: rotate(-90deg);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #31d96b 0%, #20b658 100%);
    color: #ffffff;
    border: 6px solid rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(16, 185, 85, 0.32);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(16, 185, 85, 0.38);
}

.floating-whatsapp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.floating-whatsapp svg {
    width: 34px;
    height: 34px;
}

.floating-whatsapp__image {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.floating-whatsapp span:last-child {
    display: none;
}

.page-contact .contact-grid__main,
.page-contact .contact-grid__aside .contact-card,
.page-services .service-card,
.page-about .content-panel,
.page-about .value-card,
.page-blog .blog-card,
.page-case-studies .case-card,
.page-team .team-card,
.page-team .founder-note,
.page-services .value-card,
.page-service-single .content-panel,
.page-service-single .service-stat-card,
.page-blog-single .content-panel,
.page-case-study-single .content-panel,
.page-case-study-single .contact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
}

.page-contact .contact-grid__main .section-intro,
.page-contact .contact-grid__aside h3,
.page-blog .blog-grid,
.page-services .service-grid,
.page-about .value-grid,
.page-case-studies .case-grid {
    position: relative;
    z-index: 1;
}

.page-about .founder-note {
    color: var(--brand-text);
}

.page-team .founder-note {
    color: var(--brand-text);
}

.page-team .founder-note h2,
.page-team .founder-note h3,
.page-team .founder-note p {
    color: var(--brand-ink);
}

.page-team .founder-note .card-kicker {
    color: var(--brand-accent);
}

.page-about .founder-note h2,
.page-about .founder-note h3,
.page-about .founder-note p {
    color: var(--brand-ink);
}

.page-contact .contact-grid {
    gap: 1.25rem;
}

.page-contact .contact-card--details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method-list {
    display: grid;
    gap: 0.9rem;
}

.contact-method {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(15, 76, 154, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--brand-ink);
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(11, 16, 32, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15, 76, 154, 0.2);
    box-shadow: 0 22px 50px rgba(11, 16, 32, 0.08);
    color: var(--brand-ink);
}

.contact-method__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(240, 247, 255, 0.96), rgba(232, 247, 240, 0.92));
    border: 1px solid rgba(15, 76, 154, 0.12);
    color: var(--brand-blue-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-method__icon svg {
    width: 30px;
    height: 30px;
}

.contact-method__body {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.contact-method__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.15;
}

.contact-method__meta {
    color: var(--brand-muted);
    font-size: 0.96rem;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.contact-method--whatsapp {
    background: linear-gradient(135deg, rgba(11, 16, 32, 0.98), rgba(15, 76, 154, 0.94) 58%, rgba(70, 192, 107, 0.9));
    border-color: rgba(15, 76, 154, 0.06);
    color: #ffffff;
}

.contact-method--whatsapp:hover,
.contact-method--whatsapp:focus-visible {
    color: #ffffff;
    border-color: rgba(70, 192, 107, 0.22);
}

.contact-method--whatsapp .contact-method__icon {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.contact-method--whatsapp .contact-method__meta {
    color: rgba(255, 255, 255, 0.82);
}

.contact-address-copy {
    margin-bottom: 1rem;
    color: var(--brand-muted);
    line-height: 1.75;
}

.contact-card--address .map-embed {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(15, 76, 154, 0.1);
}

.page-contact .contact-form .btn,
.page-contact .contact-card .btn {
    border-radius: 16px;
}

.page-blog-single .article-body {
    font-size: 1rem;
}

.page-blog-single .article-visual,
.page-case-study-single .case-visual--detail,
.page-service-single .service-hero__media {
    box-shadow: var(--shadow-card);
}

.custom-alert {
    border: 1px solid rgba(15, 76, 154, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.has-js .reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.has-js .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .site-topbar__inner {
        gap: 0.7rem;
    }

    .site-topbar__copy {
        font-size: 0.78rem;
    }

    .why-section__grid,
    .about-preview__grid,
    .page-banner__shell {
        grid-template-columns: 1fr;
    }

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

    .hero-dashboard__channels,
    .hero-dashboard__results {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .why-section__intro {
        position: relative;
        top: 0;
    }
}

@media (max-width: 991.98px) {
    .site-topbar {
        display: none;
    }

    .site-header .container {
        padding: 0 18px;
    }

    .section {
        padding: 92px 0;
    }

    .hero--premium {
        padding-top: 122px;
    }

    .navbar {
        padding: 0.74rem 0;
    }

    .brand-mark__video {
        height: 40px;
    }

    .brand-mark__image {
        height: 40px;
    }

    .navbar-collapse {
        padding-top: 0.8rem;
    }

    .nav-primary {
        gap: 0.75rem;
        align-items: flex-start;
    }

    .nav-link {
        padding: 0.65rem 0 !important;
        font-size: 0.98rem;
    }

    .process-grid,
    .hero-dashboard__channels,
    .hero-dashboard__results,
    .team-grid--compact,
    .hero-partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2.3rem;
    }

    .cta-panel {
        grid-template-columns: 1fr;
    }

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

    .footer-grid__brand {
        grid-column: 1 / -1;
    }

    .footer-grid__important,
    .footer-grid__quick,
    .footer-grid__services,
    .footer-grid__contact {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 767.98px) {
    .site-header .container {
        padding: 0 16px;
    }

    .section {
        padding: 74px 0;
    }

    .section-sm {
        padding: 68px 0;
    }

    .hero--premium {
        padding: 112px 0 64px;
    }

    .page-home .hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.4rem);
    }

    .hero-trust-row,
    .why-section__summary,
    .about-preview__points,
    .cta-panel__meta,
    .page-banner__highlights,
    .footer-pill-list,
    .footer-socials,
    .logo-strip {
        gap: 0.6rem;
    }

    .hero-dashboard,
    .page-banner__inner,
    .cta-panel,
    .section-shell,
    .trust-panel {
        padding: 1.45rem;
    }

    .process-grid,
    .hero-dashboard__channels,
    .hero-dashboard__results,
    .team-grid--compact,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid__brand,
    .footer-grid__important,
    .footer-grid__quick,
    .footer-grid__services,
    .footer-grid__contact {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .proof-band {
        padding-bottom: 10px;
    }

    .page-banner {
        padding: 100px 0 44px;
    }

    .page-banner__inner .hero-actions {
        justify-content: center !important;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 68px;
        height: 68px;
    }

    .site-footer .container {
        padding: 1.45rem;
    }

    .footer-bottom__legal {
        width: 100%;
    }

    .footer-payment-strip {
        flex-basis: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .footer-contact {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-dashboard__topbar,
    .hero-dashboard__summary {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-dashboard__topbar {
        justify-content: stretch;
    }

    .page-banner__inner h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .btn {
        width: 100%;
    }

    .hero-actions .btn,
    .section-head .btn,
    .why-section__intro .btn,
    .about-preview__content .btn {
        width: 100%;
    }

    .footer-payment-strip img {
        width: min(100%, 280px);
    }

    .floating-whatsapp {
        width: 62px;
        height: 62px;
        border-width: 5px;
    }

    .floating-whatsapp__icon,
    .floating-whatsapp svg,
    .floating-whatsapp__image {
        width: 30px;
        height: 30px;
    }

    .hero-partner-card {
        padding: 1.05rem 0.85rem;
    }

    .hero-partner-card strong {
        font-size: 1rem;
    }

    .hero-partner-card span {
        font-size: 0.82rem;
    }
}

/* Public typography refinement */
body {
    font-size: 14.75px;
    line-height: 1.64;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.028em;
    line-height: 1.04;
}

p,
li {
    font-size: 0.96rem;
}

.eyebrow,
.page-banner__card-label {
    font-size: 0.74rem;
}

.section-intro h2,
.page-home .section-intro h2 {
    font-size: clamp(1.72rem, 3vw, 2.52rem);
}

.section-intro p,
.page-home .section-intro p,
.page-banner__inner p,
.hero-cert-copy,
.proof-band__label {
    font-size: 0.95rem;
    line-height: 1.68;
}

.hero h1,
.service-hero h1,
.page-banner__inner h1 {
    letter-spacing: -0.04em;
}

.page-home .hero h1 {
    font-size: clamp(2.82rem, 5vw, 4.65rem);
    max-width: 900px;
}

.page-home .hero p.lead,
.service-hero__lead {
    font-size: 1rem;
    line-height: 1.7;
}

.hero-dashboard__headline h2 {
    font-size: clamp(1.62rem, 2.4vw, 2.2rem);
}

.hero-dashboard__headline p,
.hero-dashboard__insight p,
.hero-dashboard__result span,
.hero-dashboard__label,
.hero-dashboard__status {
    font-size: 0.88rem;
}

.hero-dashboard__score strong {
    font-size: 2rem;
}

.nav-link,
.nav-dropdown__link {
    font-size: 0.9rem;
}

.btn,
.site-topbar__cta,
.service-card__cta,
.footer-scroll-top {
    font-size: 0.92rem;
}

.service-card h3,
.case-card h3,
.team-card h3,
.blog-card h3,
.feature-card h3,
.value-card h3,
.contact-card h3,
.service-card--showcase h3 {
    font-size: 1.26rem;
}

.page-banner__card h2 {
    font-size: 1.42rem;
}

.contact-method__title {
    font-size: 1.05rem;
}

.service-card--showcase p,
.case-card p,
.team-card p,
.blog-card p,
.feature-card p,
.value-card p,
.contact-method__meta,
.contact-address-copy {
    font-size: 0.94rem;
    line-height: 1.66;
}

.service-card__points--showcase li,
.page-banner__list li,
.footer-links a,
.footer-links li,
.site-footer p,
.site-footer li,
.site-footer a {
    font-size: 0.93rem;
}

.testimonial-card blockquote {
    font-size: 0.92rem;
    line-height: 1.68;
}

.testimonial-card__rating span::before {
    font-size: 1.32rem;
}

.footer-description {
    font-size: 0.94rem;
    line-height: 1.68;
}

.site-footer h3,
.site-footer .brand-mark {
    font-size: 1rem;
}

.footer-bottom__links a,
.footer-bottom__legal,
.footer-bottom__links span {
    font-size: 0.88rem;
}

.contact-form label,
.contact-form .form-label,
.contact-form .form-control,
.contact-form textarea.form-control,
.page-contact select.form-control,
.page-contact select.form-select {
    font-size: 0.95rem;
}

@media (max-width: 1199.98px) {
    .page-home .hero h1 {
        font-size: clamp(2.56rem, 4.7vw, 4.15rem);
    }

    .section-intro h2,
    .page-home .section-intro h2,
    .page-banner__inner h1,
    .service-hero h1 {
        font-size: clamp(1.64rem, 3.1vw, 2.3rem);
    }
}

@media (max-width: 991.98px) {
    body {
        font-size: 14.5px;
    }

    .nav-link,
    .nav-dropdown__link {
        font-size: 0.92rem;
    }

    .page-home .hero h1 {
        font-size: clamp(2.24rem, 7.4vw, 3.45rem);
    }

    .section-intro h2,
    .page-home .section-intro h2,
    .page-banner__inner h1,
    .service-hero h1 {
        font-size: clamp(1.54rem, 4.2vw, 2.1rem);
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }

    .page-home .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .page-home .hero p.lead,
    .service-hero__lead,
    .section-intro p,
    .page-home .section-intro p,
    .page-banner__inner p {
        font-size: 0.92rem;
    }

    .section-intro h2,
    .page-home .section-intro h2,
    .page-banner__inner h1,
    .service-hero h1 {
        font-size: clamp(1.46rem, 6.2vw, 1.9rem);
    }

    .service-card h3,
    .case-card h3,
    .team-card h3,
    .blog-card h3,
    .feature-card h3,
    .value-card h3,
    .contact-card h3,
    .service-card--showcase h3 {
        font-size: 1.18rem;
    }
}

@media (max-width: 575.98px) {
    .btn,
    .site-topbar__cta,
    .service-card__cta {
        font-size: 0.9rem;
    }

    .page-home .hero h1 {
        font-size: clamp(1.88rem, 10vw, 2.6rem);
    }

    .section-intro h2,
    .page-home .section-intro h2,
    .page-banner__inner h1,
    .service-hero h1 {
        font-size: clamp(1.38rem, 7.8vw, 1.72rem);
    }
}

.page-home .hero--premium {
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 118, 196, 0.18), transparent 20%),
        radial-gradient(circle at 50% 8%, rgba(172, 72, 255, 0.18), transparent 24%),
        radial-gradient(circle at 84% 14%, rgba(84, 143, 255, 0.16), transparent 22%),
        radial-gradient(circle at 50% 72%, rgba(255, 180, 219, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(248, 241, 255, 0.96) 0%, rgba(242, 246, 255, 0.96) 58%, rgba(239, 249, 255, 0.92) 100%);
}

.page-home .hero--premium::before {
    width: 420px;
    height: 420px;
    right: -40px;
    top: 16px;
    background: radial-gradient(circle, rgba(86, 125, 255, 0.24), transparent 68%);
}

.page-home .hero--premium::after {
    width: 420px;
    height: 420px;
    left: -54px;
    top: 24px;
    background: radial-gradient(circle, rgba(255, 118, 196, 0.22), transparent 68%);
}

.page-home .hero h1 {
    background: linear-gradient(90deg, #9a1df2 0%, #2f6bff 34%, #6f32ff 68%, #ff2d78 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.download-card {
    display: grid;
    gap: 0;
    grid-template-rows: auto 1fr;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.download-card:hover {
    transform: translateY(-8px);
    border-color: var(--download-glow);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.download-card__poster {
    display: grid;
    gap: 1rem;
    grid-template-rows: auto 1fr auto;
    min-height: 320px;
    padding: 1.25rem;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, var(--download-glow), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(155deg, var(--download-tone) 0%, #050816 100%);
}

.download-card__poster-top {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    align-items: center;
}

.download-card__badge,
.download-card__brand {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.download-card__brand {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
    letter-spacing: 0.04em;
}

.download-card__poster-body {
    display: grid;
    align-content: center;
    gap: 0.9rem;
}

.download-card__poster-body p {
    margin: 0;
    color: var(--download-accent);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.download-card__poster-body h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 0.94;
}

.download-card__poster-list,
.download-card__details {
    display: grid;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.download-card__poster-list li,
.download-card__details li {
    position: relative;
    padding-left: 1rem;
}

.download-card__poster-list li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-weight: 600;
}

.download-card__poster-list li::before,
.download-card__details li::before {
    content: '';
    position: absolute;
    top: 0.65rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--download-accent);
    box-shadow: 0 0 0 6px var(--download-glow);
}

.download-card__poster-ribbon {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.download-card__poster-ribbon strong {
    color: #ffffff;
    font-size: 1rem;
}

.download-card__poster-ribbon span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: right;
}

.download-card__body {
    display: grid;
    gap: 1rem;
    padding: 1.45rem;
}

.download-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.download-card__meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(15, 76, 154, 0.08);
    color: #234570;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.download-card__body h3 {
    margin: 0;
    font-size: 1.42rem;
}

.download-card__body p {
    margin: 0;
}

.download-card__details li {
    color: var(--brand-ink);
    font-size: 0.94rem;
    font-weight: 600;
}

.download-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.68rem;
    width: 100%;
}

.download-card__cta svg {
    width: 18px;
    height: 18px;
}

.download-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 1.5rem;
    align-items: start;
    padding: 2rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.16), transparent 20%),
        radial-gradient(circle at bottom left, rgba(15, 76, 154, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.94));
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.download-cta__copy h2 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    margin-bottom: 1rem;
}

.download-cta__steps {
    display: grid;
    gap: 1rem;
}

.download-step {
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.download-step strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1.04rem;
}

.download-step p {
    margin: 0;
}

@media (max-width: 1199.98px) {
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .download-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card__poster {
        min-height: 280px;
    }

    .download-card__poster-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-download .site-backdrop {
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 35%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.98));
}

.page-download .site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(15, 76, 154, 0.08);
    box-shadow: 0 10px 30px rgba(11, 16, 32, 0.04);
}

.page-download .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(11, 16, 32, 0.08);
    border-bottom-color: rgba(15, 76, 154, 0.12);
}

.page-download .site-topbar {
    background: linear-gradient(90deg, #17377f 0%, #49249a 54%, #5d2bc3 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-download .site-topbar__copy {
    gap: 0.7rem;
    font-size: 0.82rem;
    text-align: initial;
}

.page-download .site-topbar__badge {
    padding: 0.28rem 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.68rem;
}

.page-download .site-topbar__cta {
    min-height: 40px;
    padding: 0.62rem 1.15rem;
    background: linear-gradient(135deg, #2fd06c, #19a34f);
    box-shadow: 0 12px 26px rgba(20, 163, 74, 0.22);
}

.page-download .navbar {
    padding: 0.82rem 0;
}

.page-download .nav-primary {
    gap: 1.3rem;
}

.page-download .brand-mark {
    font-size: 1.15rem;
    color: var(--brand-ink);
}

.page-download .brand-mark strong {
    color: var(--brand-accent);
}

.download-showcase {
    padding: 68px 0 110px;
    background: #ffffff;
}

.download-showcase .container {
    max-width: 1240px;
}

.download-showcase__header {
    margin-bottom: 44px;
    text-align: center;
}

.download-showcase__header h1 {
    margin: 0;
    color: #111111;
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 72px 48px;
    max-width: 1140px;
    margin: 0 auto;
}

.software-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px 16px;
    background: #ffffff;
    border: 1px solid #cfcfcf;
}

.software-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding-top: 18px;
}

.software-card__body h2 {
    margin: 0;
    color: #1a1a1a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.software-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 182px;
    min-height: 48px;
    padding: 0.85rem 1.6rem;
    border-radius: 16px;
    background: #232654;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.software-card__button:hover,
.software-card__button:focus {
    background: #1b1d42;
    color: #ffffff;
}

.software-poster {
    position: relative;
    width: 100%;
    height: 332px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    font-family: 'Outfit', sans-serif;
}

.software-poster h3,
.software-poster p,
.software-poster ul,
.software-poster small {
    margin: 0;
}

.software-poster--image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.software-poster__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

.software-poster__brand-chip {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 30px;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #ffffff;
    color: #21468d;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.software-poster__brand-chip--light {
    background: rgba(255, 255, 255, 0.96);
}

.software-poster__content {
    position: absolute;
    top: 54px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    text-align: center;
}

.software-poster__content--tight {
    top: 46px;
    justify-items: start;
    text-align: left;
}

.software-poster__microcopy {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.software-poster__subtitle {
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.software-poster__rule {
    width: 72%;
    height: 2px;
    background: rgba(255, 255, 255, 0.56);
}

.software-poster__panel {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 74px;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    padding: 0.55rem 0.85rem;
    background: rgba(11, 27, 71, 0.98);
    color: #ffffff;
}

.software-poster__panel strong {
    font-size: 1.9rem;
    line-height: 1;
}

.software-poster__panel span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.25;
}

.software-poster__panel--green {
    background: rgba(18, 98, 21, 0.96);
}

.software-poster__screen,
.software-poster__phone,
.software-poster__chat-phone,
.software-poster__mini-device {
    position: absolute;
}

.software-poster__screen {
    left: 18px;
    bottom: 10px;
    width: 62%;
    height: 56px;
    border-radius: 6px;
    background:
        linear-gradient(180deg, #f7f7f7 0 9px, #cbd3ff 9px 100%),
        #ffffff;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.software-poster__screen::before,
.software-poster__screen::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    height: 6px;
    border-radius: 999px;
    background: rgba(69, 89, 196, 0.3);
}

.software-poster__screen::before {
    top: 18px;
}

.software-poster__screen::after {
    top: 30px;
}

.software-poster__phone {
    right: 18px;
    bottom: 8px;
    width: 44px;
    height: 90px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #d8e5d6);
    border: 3px solid #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.software-poster__phone::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    right: 9px;
    height: 6px;
    border-radius: 999px;
    background: rgba(34, 34, 34, 0.1);
}

.software-poster__orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(73, 207, 107, 0.84);
    box-shadow: 0 0 0 5px rgba(73, 207, 107, 0.12);
}

.software-poster__orb--1 {
    top: 28px;
    right: 24px;
    width: 14px;
    height: 14px;
}

.software-poster__orb--2 {
    top: 56px;
    left: 112px;
    width: 12px;
    height: 12px;
}

.software-poster__orb--3 {
    top: 118px;
    left: 22px;
    width: 18px;
    height: 18px;
}

.software-poster--button-pro {
    background:
        radial-gradient(circle at top right, rgba(73, 207, 107, 0.14), transparent 26%),
        linear-gradient(180deg, #12306f 0%, #0f2556 100%);
    color: #ffffff;
}

.software-poster--button-pro h3 {
    font-size: 2.25rem;
    line-height: 0.98;
}

.software-poster--button-pro small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.75rem;
    line-height: 1.3;
    max-width: 220px;
}

.software-poster--cloud-bulk {
    background:
        radial-gradient(circle at bottom right, rgba(103, 201, 122, 0.18), transparent 24%),
        linear-gradient(180deg, #ffffff, #fbfbfb);
    color: #161616;
}

.software-poster--cloud-bulk h3 {
    font-size: 1.7rem;
    line-height: 1.08;
}

.software-poster__promo-tag {
    position: absolute;
    top: 20px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    background: #ffbf2d;
    color: #111111;
    font-size: 0.8rem;
    font-weight: 800;
}

.software-poster__cloud-layout {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 118px;
    bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 0.5rem;
    align-items: stretch;
}

.software-poster__bullet-list {
    display: grid;
    align-content: start;
    gap: 0.3rem;
    padding: 0;
    list-style: none;
}

.software-poster__bullet-list li {
    position: relative;
    padding-left: 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.25;
}

.software-poster__bullet-list li::before {
    content: '';
    position: absolute;
    top: 0.44rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
}

.software-poster__bullet-list--orange li::before {
    background: #f59e0b;
}

.software-poster__bullet-list--lime li {
    color: rgba(255, 255, 255, 0.9);
}

.software-poster__bullet-list--lime li::before {
    background: #a3e635;
}

.software-poster__bullet-list--gold li {
    gap: 0.35rem;
}

.software-poster__bullet-list--gold li::before {
    background: #ffd24f;
}

.software-poster__person {
    position: relative;
    align-self: end;
    width: 100%;
    min-height: 154px;
    border-radius: 24px 24px 0 0;
    background:
        radial-gradient(circle at 50% 24%, #f1d7bd 0 22px, transparent 23px),
        radial-gradient(circle at 50% 52%, #3b82f6 0 42px, transparent 43px),
        radial-gradient(circle at 50% 72%, #1d4ed8 0 68px, transparent 69px);
}

.software-poster__tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    padding: 0.16rem 0.45rem;
    border-radius: 999px;
    background: #83d768;
    color: #1e3a08;
    font-size: 0.58rem;
    font-weight: 700;
    white-space: nowrap;
}

.software-poster__tag--top {
    top: 16px;
    right: 10px;
}

.software-poster__tag--left {
    top: 70px;
    left: -4px;
}

.software-poster__tag--right {
    top: 44px;
    right: 2px;
}

.software-poster__tag--bottom {
    bottom: 18px;
    left: 18px;
}

.software-poster__trial-flag {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.72rem;
    background: #f59e0b;
    color: #111111;
    font-size: 0.84rem;
    font-weight: 800;
}

.software-poster--button-sender {
    background: linear-gradient(180deg, #ffffff, #fbfbfb);
    color: #121212;
}

.software-poster__sender-layout {
    position: absolute;
    top: 36px;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 0.8rem;
}

.software-poster__sender-copy {
    display: grid;
    align-content: start;
    gap: 0.7rem;
}

.software-poster__sender-copy h3 {
    font-size: 2.1rem;
    line-height: 1.02;
}

.software-poster__sender-copy small {
    color: rgba(17, 17, 17, 0.66);
    font-size: 0.7rem;
    line-height: 1.3;
}

.software-poster__pill-list {
    display: grid;
    gap: 0.38rem;
    padding: 0;
    list-style: none;
}

.software-poster__pill-list li {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.26rem 0.7rem;
    border-radius: 999px;
    background: #dcf6be;
    color: #23401e;
    font-size: 0.72rem;
    font-weight: 700;
}

.software-poster__chat-phone {
    position: relative;
    align-self: stretch;
    width: 100%;
    margin-top: 8px;
    border-radius: 26px;
    background: linear-gradient(180deg, #0f172a, #111827);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.22);
}

.software-poster__chat-phone::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    width: 48px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-50%);
}

.software-poster__chat-phone span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 24px;
    border-radius: 9px;
    background: #e8f7e5;
}

.software-poster__chat-phone span:nth-child(1) {
    top: 46px;
}

.software-poster__chat-phone span:nth-child(2) {
    top: 84px;
    left: 26px;
    right: 14px;
    background: #f4f5f7;
}

.software-poster__chat-phone span:nth-child(3) {
    top: 122px;
}

.software-poster__download-flag {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    background: #ff2e1a;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(255, 46, 26, 0.25);
}

.software-poster--wa-sender {
    background:
        radial-gradient(circle at 16% 24%, rgba(255, 255, 255, 0.14), transparent 20%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 16%),
        linear-gradient(180deg, #2e9d28, #22891d);
    color: #ffffff;
}

.software-poster--wa-sender h3 {
    font-size: 2.8rem;
    line-height: 0.96;
}

.software-poster__version-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.7rem;
    background: #e7382f;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}

.software-poster__version-badge--red {
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
}

.software-poster--wa-sender small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    max-width: 220px;
}

.software-poster__screen--green {
    width: 70%;
    background:
        linear-gradient(180deg, #e7f5e6 0 10px, #d1f1ca 10px 100%),
        #ffffff;
}

.software-poster--whatsapp-crm {
    background: linear-gradient(180deg, #080808, #161616);
    color: #ffffff;
}

.software-poster__crm-head {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.55rem 1rem;
    background: #a9e012;
    color: #111111;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.software-poster__crm-body {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 98px;
    bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 0.8rem;
}

.software-poster__loop {
    position: relative;
    align-self: center;
    width: 100%;
    height: 96px;
    border: 3px dashed #d5ff50;
    border-radius: 999px;
}

.software-poster__loop::before {
    content: '';
    position: absolute;
    right: -6px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid #d5ff50;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: rotate(32deg);
}

.software-poster__screen--crm {
    left: auto;
    right: 16px;
    bottom: 12px;
    width: 38%;
    height: 54px;
    background:
        linear-gradient(180deg, #f5f5f5 0 10px, #dce7d8 10px 100%),
        #ffffff;
}

.software-poster--pro-sender {
    background: linear-gradient(180deg, #7640b6, #61359f);
    color: #ffffff;
}

.software-poster__pro-head {
    position: absolute;
    top: 22px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.software-poster__pro-head h3 {
    font-size: 2.15rem;
    line-height: 0.98;
}

.software-poster__wa-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #ffffff;
    color: #7741b8;
    font-size: 1.4rem;
    font-weight: 800;
}

.software-poster__software-pill {
    position: absolute;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    color: #61359f;
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.software-poster--pro-sender .software-poster__bullet-list {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 128px;
}

.software-poster__mini-device {
    right: 22px;
    bottom: 12px;
    width: 58px;
    height: 88px;
    border-radius: 16px;
    background: linear-gradient(180deg, #2d204e, #b289ff);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.pricing-page-hero {
    position: relative;
    padding: 112px 0 48px;
}

.pricing-page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 1.5rem;
    align-items: center;
}

.pricing-page-hero__copy,
.pricing-page-hero__visual {
    position: relative;
    padding: 2rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(15, 76, 154, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.pricing-page-hero__copy h1 {
    font-size: clamp(2.2rem, 4.4vw, 4.1rem);
    margin-bottom: 1rem;
}

.pricing-page-hero__copy p {
    max-width: 700px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pricing-page-hero__visual {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pricing-page-hero__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-page-hero__visual-placeholder {
    display: grid;
    gap: 0.7rem;
    max-width: 320px;
    text-align: center;
}

.pricing-page-hero__visual-placeholder strong {
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
}

.pricing-page-hero__visual-placeholder p {
    margin: 0;
}

.page-support-ticket .content-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
}

.support-ticket-section {
    padding-top: 92px;
}

.support-ticket-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

.support-ticket-intro h1 {
    max-width: 840px;
    margin-bottom: 0.9rem;
    font-size: clamp(2.35rem, 5vw, 4.1rem);
    letter-spacing: -0.05em;
}

.support-ticket-intro p {
    max-width: 760px;
}

.support-ticket-login-card {
    padding: 1.7rem;
}

.support-ticket-login-card h2 {
    margin: 1rem 0 0.65rem;
}

.support-ticket-login-card p {
    margin-bottom: 1.2rem;
}

.support-ticket-login-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.support-ticket-panel {
    padding: 2.15rem;
}

.support-ticket-panel--status {
    display: grid;
    gap: 1.6rem;
}

.support-ticket-panel__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.support-ticket-panel__layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.support-ticket-panel__content {
    display: grid;
    align-content: start;
    gap: 1.2rem;
}

.support-ticket-panel__visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: start;
    min-height: 100%;
    padding: 0;
}

.support-ticket-panel__visual img {
    width: 100%;
    max-width: 720px;
    max-height: 540px;
    height: auto;
    object-fit: contain;
    object-position: top center;
    filter: drop-shadow(0 28px 50px rgba(52, 93, 223, 0.14));
}

.support-ticket-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}

.support-ticket-form .form-control,
.support-ticket-form .form-select {
    min-height: 56px;
    border-radius: 18px;
}

.support-ticket-form textarea.form-control {
    min-height: 180px;
}

.support-ticket-attachments {
    display: grid;
    gap: 0.85rem;
    max-width: 860px;
}

.support-ticket-attachments--centered {
    margin-inline: auto;
}

.support-ticket-attachment-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
    align-items: center;
}

.support-ticket-file-field {
    min-height: 56px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px 0 0 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0.5rem 0.4rem 0.9rem;
}

.support-ticket-file-input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--brand-ink);
    font-size: 0.96rem;
}

.support-ticket-file-input::file-selector-button {
    margin-right: 0.8rem;
    border: 0;
    border-radius: 14px;
    background: rgba(52, 93, 223, 0.1);
    color: var(--brand-ink);
    font-weight: 700;
    padding: 0.72rem 1rem;
    cursor: pointer;
}

.support-ticket-attachment-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 56px;
    border: 0;
    border-radius: 0 18px 18px 0;
    background: #1f2937;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.support-ticket-attachment-trigger:hover,
.support-ticket-attachment-trigger:focus {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
}

.support-ticket-attachment-trigger:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
    box-shadow: none;
}

.support-ticket-attachment-trigger--remove {
    background: rgba(15, 23, 42, 0.08);
    color: var(--brand-ink);
    font-size: 1.65rem;
    box-shadow: none;
}

.support-ticket-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.25rem;
}

.support-ticket-form__footer--centered {
    justify-content: center;
}

.support-ticket-form__footer--end {
    justify-content: flex-end;
}

.support-ticket-field-note {
    max-width: 760px;
    color: var(--brand-muted);
    line-height: 1.7;
}

.support-ticket-field-note--attachments {
    margin-top: 0.7rem;
}

.support-ticket-lookup-form {
    margin-top: 0.5rem;
}

.support-ticket-panel--status .support-ticket-lookup-form {
    margin-top: 0;
}

.support-ticket-lookup-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
}

.support-ticket-lookup-card {
    padding: 1.4rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.support-ticket-status-panel {
    padding: 2.15rem;
    display: grid;
    gap: 1.5rem;
}

.support-ticket-status-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.support-ticket-status-panel__header h3 {
    margin: 0.5rem 0 0.45rem;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.support-ticket-results-panel {
    gap: 1.1rem;
}

.support-ticket-table-shell {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    overflow: hidden;
}

.support-ticket-public-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 860px;
}

.support-ticket-public-table th,
.support-ticket-public-table td {
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    vertical-align: middle;
    text-align: left;
}

.support-ticket-public-table thead th {
    background: rgba(248, 250, 252, 0.92);
    color: var(--brand-ink);
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
}

.support-ticket-public-table tbody tr {
    background: rgba(255, 255, 255, 0.96);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.support-ticket-public-table tbody tr:hover,
.support-ticket-public-table tbody tr.is-selected {
    background: rgba(239, 246, 255, 0.75);
}

.support-ticket-public-table tbody tr:last-child td {
    border-bottom: 0;
}

.support-ticket-public-table td {
    color: var(--brand-ink);
    line-height: 1.5;
}

.support-ticket-public-table td:nth-child(1) {
    font-weight: 700;
    color: var(--brand-blue-deep);
    white-space: nowrap;
}

.support-ticket-public-table td:nth-child(6) .support-ticket-public-chip {
    text-transform: uppercase;
    min-height: 38px;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
}

.support-ticket-table__view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #1d7df2;
    background: rgba(29, 125, 242, 0.1);
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.support-ticket-table__view:hover {
    transform: translateY(-1px);
    background: rgba(29, 125, 242, 0.16);
    color: #0f5fc1;
}

.support-ticket-table__view svg {
    width: 22px;
    height: 22px;
}

.support-ticket-results-note {
    color: var(--brand-muted);
}

.support-ticket-results-list {
    display: grid;
    gap: 0.95rem;
}

.support-ticket-result-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
}

.support-ticket-result-card strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--brand-blue-deep);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-ticket-result-card h4 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
}

.support-ticket-result-card p {
    margin: 0;
    color: var(--brand-muted);
}

.support-ticket-result-card__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.support-ticket-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.support-ticket-public-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--brand-ink);
    font-size: 0.84rem;
    font-weight: 700;
}

.support-ticket-public-chip--open {
    background: rgba(249, 115, 22, 0.14);
    color: #c2410c;
}

.support-ticket-public-chip--in-progress {
    background: rgba(59, 130, 246, 0.14);
    color: #1d4ed8;
}

.support-ticket-public-chip--waiting-customer {
    background: rgba(168, 85, 247, 0.14);
    color: #7c3aed;
}

.support-ticket-public-chip--resolved {
    background: rgba(34, 197, 94, 0.14);
    color: #15803d;
}

.support-ticket-public-chip--closed {
    background: rgba(107, 114, 128, 0.14);
    color: #4b5563;
}

.support-ticket-public-chip--priority {
    background: rgba(52, 93, 223, 0.1);
    color: var(--brand-blue-deep);
}

.support-ticket-status-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.support-ticket-status-card,
.support-ticket-status-attachments,
.support-ticket-thread,
.support-ticket-reply-box {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
}

.support-ticket-status-card {
    padding: 1rem 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.support-ticket-status-card strong,
.support-ticket-status-attachments strong {
    color: var(--brand-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-ticket-status-card span {
    color: var(--brand-ink);
    line-height: 1.6;
}

.support-ticket-status-attachments {
    padding: 1rem 1.1rem;
}

.support-ticket-thread {
    padding: 1.35rem;
}

.support-ticket-thread__head h3 {
    margin: 0.55rem 0 0;
}

.support-ticket-thread__list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.support-ticket-thread__item {
    display: grid;
    gap: 0.45rem;
}

.support-ticket-thread__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--brand-muted);
}

.support-ticket-thread__bubble {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    line-height: 1.8;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(248, 250, 252, 0.9);
    color: var(--brand-ink);
}

.support-ticket-thread__item.is-team .support-ticket-thread__bubble {
    background: rgba(239, 246, 255, 0.92);
    border-color: rgba(59, 130, 246, 0.16);
}

.support-ticket-thread__item.is-customer .support-ticket-thread__bubble {
    background: rgba(255, 255, 255, 0.98);
}

.support-ticket-reply-box {
    padding: 1.35rem;
}

@media (max-width: 1199.98px) {
    .pricing-page-hero__grid {
        grid-template-columns: 1fr;
    }

    .software-grid {
        gap: 52px 30px;
    }
}

@media (max-width: 991.98px) {
    .page-download .site-topbar__inner {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }

    .page-download .site-topbar__copy {
        text-align: center;
    }

    .software-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 26px;
    }

    .support-ticket-intro {
        grid-template-columns: 1fr;
    }

    .support-ticket-lookup-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767.98px) {
    .download-showcase {
        padding: 52px 0 84px;
    }

    .pricing-page-hero {
        padding: 96px 0 36px;
    }

    .pricing-page-hero__copy,
    .pricing-page-hero__visual {
        padding: 1.45rem;
    }

    .pricing-page-hero__visual {
        min-height: 320px;
    }

    .software-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        gap: 30px;
    }

    .software-poster {
        height: 314px;
    }

    .support-ticket-panel {
        padding: 1.65rem;
    }

    .support-ticket-panel__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .support-ticket-panel__visual {
        order: -1;
        padding-top: 0;
    }

    .support-ticket-status-panel {
        padding: 1.65rem;
    }

    .support-ticket-attachment-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .support-ticket-attachment-trigger {
        width: 100%;
        border-radius: 18px;
    }

    .support-ticket-file-field {
        border-radius: 18px;
    }

    .support-ticket-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .support-ticket-form__footer .btn {
        width: 100%;
        justify-content: center;
    }

    .support-ticket-status-grid {
        grid-template-columns: 1fr;
    }

    .support-ticket-public-table th,
    .support-ticket-public-table td {
        padding: 1rem;
    }
}

.cart-drawer {
    width: min(100vw, 420px);
    border-left: 1px solid rgba(15, 76, 154, 0.08);
    background:
        radial-gradient(circle at top right, rgba(53, 93, 223, 0.12), transparent 26%),
        radial-gradient(circle at bottom left, rgba(70, 192, 107, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.cart-drawer__header {
    align-items: flex-start;
    padding: 1.5rem 1.5rem 0.9rem;
}

.cart-drawer__header h2 {
    margin: 0.55rem 0 0;
    font-size: 1.45rem;
}

.cart-drawer__body {
    display: grid;
    gap: 1.2rem;
}

.cart-drawer__empty {
    display: grid;
    gap: 1rem;
    justify-items: flex-start;
    padding: 0.65rem 0.15rem 1rem;
}

.cart-drawer__empty h3,
.cart-line h3 {
    margin: 0;
}

.cart-drawer__empty p {
    margin: 0;
}

.cart-drawer__empty-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(53, 93, 223, 0.12), rgba(70, 192, 107, 0.14));
    color: var(--brand-blue-deep);
}

.cart-drawer__empty-icon svg {
    width: 30px;
    height: 30px;
}

.cart-drawer__content {
    display: grid;
    gap: 1rem;
}

.cart-drawer__list {
    display: grid;
    gap: 0.95rem;
}

.cart-line {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 76, 154, 0.08);
    box-shadow: var(--shadow-soft);
}

.cart-line__meta {
    margin: 0 0 0.35rem;
    color: #355ddf;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.cart-line__price {
    margin: 0.4rem 0 0;
    color: var(--brand-ink);
    font-weight: 700;
}

.cart-line__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.cart-line__qty {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 76, 154, 0.08);
    background: rgba(245, 248, 252, 0.88);
}

.cart-line__qty span {
    min-width: 1.5rem;
    text-align: center;
    color: var(--brand-ink);
    font-weight: 700;
}

.cart-line__qty-button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: var(--brand-blue-deep);
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 76, 154, 0.08);
}

.cart-line__remove {
    border: 0;
    padding: 0;
    background: transparent;
    color: #7a879d;
    font-weight: 700;
}

.cart-drawer__summary {
    display: grid;
    gap: 0.7rem;
    padding: 1rem 1.15rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(53, 93, 223, 0.08), rgba(70, 192, 107, 0.1));
    border: 1px solid rgba(53, 93, 223, 0.08);
}

.cart-drawer__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--brand-ink);
    font-weight: 600;
}

.cart-drawer__summary-row strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.08rem;
}

.cart-drawer__actions {
    display: grid;
    gap: 0.75rem;
}

.cart-drawer__actions .btn {
    width: 100%;
    justify-content: center;
}

[data-cart-checkout].is-disabled {
    pointer-events: none;
    opacity: 0.55;
    box-shadow: none;
}

.shop-hero__visual {
    overflow: visible;
}

.shop-hero__visual-surface {
    display: grid;
    gap: 1rem;
    width: 100%;
    align-content: center;
}

.shop-hero__badge {
    justify-self: flex-start;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(53, 93, 223, 0.1);
    color: #355ddf;
    font-size: 0.82rem;
    font-weight: 700;
}

.shop-hero__preview-grid {
    display: grid;
    gap: 0.95rem;
}

.shop-hero__mini-card {
    display: grid;
    gap: 0.3rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    border: 1px solid rgba(15, 76, 154, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.shop-hero__mini-card span {
    color: #355ddf;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.shop-hero__mini-card strong {
    color: var(--brand-ink);
    font-size: 1rem;
}

.shop-hero__mini-card small {
    color: var(--brand-text);
    font-weight: 600;
}

.shop-hero__cart-chip {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(11, 16, 32, 0.95), rgba(53, 93, 223, 0.94));
    color: #ffffff;
    box-shadow: 0 22px 44px rgba(11, 16, 32, 0.16);
}

.shop-hero__cart-chip small,
.shop-hero__cart-chip strong {
    display: block;
    color: inherit;
}

.shop-hero__cart-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.shop-hero__cart-icon svg {
    width: 24px;
    height: 24px;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.shop-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.shop-product-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.shop-product-card__category {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: var(--pricing-button-bg);
    color: var(--pricing-accent);
    font-size: 0.82rem;
    font-weight: 700;
}

.shop-product-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
}

.shop-product-card__icon svg {
    width: 24px;
    height: 24px;
}

.shop-product-card h2 {
    margin-bottom: 0.35rem;
    font-size: 1.4rem;
}

.shop-product-card__plan {
    margin: 0 0 0.8rem;
    color: var(--brand-blue-deep);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.shop-product-card__actions {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
}

.shop-product-card .pricing-card__cta {
    border: 0;
}

.shop-product-card .pricing-card__cta.is-added {
    background: linear-gradient(135deg, #2e9a52 0%, #46c06b 100%);
}

.shop-product-card__secondary {
    width: 100%;
    justify-content: center;
}

.shop-product-card--electric,
.shop-hero__mini-card.shop-product-card--electric {
    background:
        radial-gradient(circle at top right, rgba(53, 93, 223, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
}

.shop-product-card--violet,
.shop-hero__mini-card.shop-product-card--violet {
    background:
        radial-gradient(circle at top right, rgba(126, 34, 228, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 255, 0.94));
}

.shop-product-card--emerald,
.shop-hero__mini-card.shop-product-card--emerald {
    background:
        radial-gradient(circle at top right, rgba(70, 192, 107, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 255, 249, 0.94));
}

.shop-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.shop-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.shop-card__media {
    padding: 0.9rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 252, 0.72));
}

.shop-card__image,
.shop-card__placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
}

.shop-card__image {
    display: block;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}

.shop-card__placeholder {
    display: grid;
    place-content: center;
    gap: 0.55rem;
    padding: 1.4rem;
    border: 1px dashed rgba(53, 93, 223, 0.2);
    background:
        radial-gradient(circle at top left, rgba(53, 93, 223, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(70, 192, 107, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
    text-align: center;
}

.shop-card__placeholder span {
    color: #16a085;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-card__placeholder strong {
    color: var(--brand-ink);
    font-size: 1.05rem;
}

.shop-card__body {
    display: grid;
    gap: 0.95rem;
    padding: 1.3rem;
}

.shop-card__category {
    color: var(--pricing-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-card h2 {
    margin: 0;
    font-size: clamp(1.32rem, 2.2vw, 1.85rem);
    line-height: 1.16;
}

.shop-card__description {
    margin: 0;
    color: var(--brand-text);
}

.shop-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.shop-card__price {
    color: #0f8a63;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.shop-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--brand-muted);
}

.shop-card__stars {
    display: inline-flex;
    gap: 0.1rem;
    font-size: 1.35rem;
    line-height: 1;
    color: #e5e7eb;
}

.shop-card__stars .is-active {
    color: #f59e0b;
}

.shop-card__rating-count {
    font-weight: 700;
}

.shop-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.shop-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(22, 184, 117, 0.08);
    border-radius: 16px;
    background: #16b875;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.shop-card__button:hover,
.shop-card__button:focus {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(22, 184, 117, 0.18);
}

.shop-card__button.is-disabled {
    background: rgba(226, 232, 240, 0.88);
    border-color: rgba(148, 163, 184, 0.16);
    color: #7a879d;
    pointer-events: none;
    box-shadow: none;
}

.shop-card__button--wide {
    grid-column: 1 / -1;
    width: 100%;
}

.shop-card__button--buy {
    grid-column: 1 / -1;
    border-color: transparent;
    background: var(--brand-gradient);
}

.shop-card__button--buy.is-added {
    background: linear-gradient(135deg, #2e9a52 0%, #46c06b 100%);
}

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.shop-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 58px;
    padding: 0 1rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.shop-pagination__link.is-active {
    background: var(--brand-ink);
    color: #ffffff;
    border-color: transparent;
}

.shop-pagination__link--next {
    min-width: 72px;
    font-size: 1.35rem;
}

.shop-empty-state {
    padding: 2rem;
    border-radius: 28px;
    border: 1px dashed rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
}

@media (max-width: 991.98px) {
    .page-shop .shop-catalog-section {
        padding-top: 48px;
    }

    .shop-marketplace__hero {
        border-radius: 28px;
    }

    .shop-marketplace__search {
        min-height: 60px;
    }

    .shop-marketplace__trail {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 767.98px) {
    .page-shop .shop-catalog-section {
        padding-top: 40px;
        padding-bottom: 72px;
    }

    .shop-marketplace {
        gap: 1.5rem;
    }

    .shop-marketplace__hero {
        justify-items: stretch;
        padding: 1.4rem;
        border-radius: 24px;
        text-align: left;
    }

    .shop-marketplace__hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .shop-marketplace__subtitle {
        font-size: 0.98rem;
    }

    .shop-marketplace__search {
        min-height: 56px;
        padding: 0 1rem;
        font-size: 0.96rem;
    }

    .shop-marketplace__filters {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .shop-marketplace__filter {
        min-height: 52px;
        padding: 0.75rem 0.95rem;
        font-size: 0.92rem;
    }

    .shop-marketplace__trail {
        padding: 0.9rem 1rem;
    }

    .shop-marketplace__trail-count {
        white-space: normal;
    }

    .shop-card-grid {
        grid-template-columns: 1fr;
    }

    .shop-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-card__actions {
        grid-template-columns: 1fr;
    }

    .shop-card__button--buy {
        grid-column: auto;
    }
}

@media (max-width: 991.98px) {
    .header-cart-toggle {
        width: 56px;
        height: 56px;
        border-radius: 20px;
    }

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

@media (max-width: 767.98px) {
    .shop-card-grid,
    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    .cart-line__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-line__qty {
        justify-content: space-between;
    }

    .shop-hero__cart-chip {
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .shop-marketplace__filter {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .has-js .reveal-on-scroll,
    .btn,
    .card-link svg,
    .service-card,
    .case-card,
    .team-card,
    .testimonial-card,
    .blog-card,
    .feature-card,
    .value-card,
    .pricing-card {
        transition: none !important;
    }
}
