/* SPDX-License-Identifier: GPL-3.0-only */
/* Copyright (c) 2026 AethelisDEV / Aeon Platform. All rights reserved. */

:root {
    --primary: #ff3b30;
    --secondary: #1d1d1f;
    --text: #1d1d1f;
    --text-muted: rgba(29, 29, 31, 0.62);
    --text-light: rgba(29, 29, 31, 0.55);
    --text-faint: rgba(29, 29, 31, 0.45);
    --bg: #fbfbfd;
    --bg-alt: #f5f5f7;
    --white: #fff;
    --border: rgba(0, 0, 0, 0.06);
    --border-input: rgba(0, 0, 0, 0.08);
    --border-input-strong: rgba(0, 0, 0, 0.1);
    --radius-xs: 7px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 26px;
    --radius-3xl: 28px;
    --radius-4xl: 32px;
    --radius-pill: 100px;
    --container: 1280px;
    --nav-height: 64px;
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, monospace;
    --transition: 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 20px 40px -28px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 30px 60px -30px rgba(0, 0, 0, 0.15);
    --shadow-hero: 0 40px 90px -30px rgba(0, 0, 0, 0.25);
    --spacing-page: 32px;
}

@keyframes ysp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes ysp-fade {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
}

::selection {
    background: rgba(255, 59, 48, 0.18);
}

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

a {
    color: inherit;
}

.ysp-page {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.ysp-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing-page);
}

.ysp-container--narrow {
    max-width: 820px;
}

.ysp-container--form {
    max-width: 900px;
}

.ysp-container--quote {
    max-width: 840px;
}

.ysp-container--stats {
    max-width: 1000px;
    margin: 0 auto;
}

.ysp-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}

.ysp-label--lg {
    margin-bottom: 16px;
}

.ysp-label--sm {
    font-size: 13px;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.ysp-label--muted {
    color: rgba(29, 29, 31, 0.5);
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

.ysp-heading-xl {
    font-size: clamp(40px, 6.5vw, 84px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
    background: linear-gradient(180deg, #1d1d1f 0%, #48484a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ysp-heading-lg {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0;
}

.ysp-heading-lg--mb {
    margin: 0 0 16px;
}

.ysp-heading-md {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.ysp-heading-md--cta {
    font-size: clamp(28px, 3.4vw, 42px);
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
}

.ysp-heading-page {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0 0 20px;
}

.ysp-heading-about {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    margin: 0 0 28px;
}

.ysp-heading-about-sub {
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 40px;
}

.ysp-text-lead {
    max-width: 620px;
    margin: 0 auto 36px;
    font-size: 19px;
    line-height: 1.5;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    font-weight: 400;
}

.ysp-text-lead--sm {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(29, 29, 31, 0.6);
    margin: 0 auto;
}

.ysp-text-body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
}

.ysp-text-body--lg {
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-muted);
}

.ysp-text-center {
    text-align: center;
}

.ysp-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: var(--radius-pill);
    transition: opacity var(--transition);
}

.ysp-btn:hover {
    opacity: 0.9;
}

.ysp-btn--primary {
    color: var(--white);
    background: var(--primary);
    padding: 14px 30px;
}

.ysp-btn--secondary {
    color: var(--text);
    background: rgba(0, 0, 0, 0.05);
    padding: 14px 30px;
}

.ysp-btn--dark {
    color: var(--white);
    background: var(--secondary);
    padding: 13px 26px;
    font-size: 15px;
}

.ysp-btn--dark-sm {
    color: var(--white);
    background: var(--secondary);
    padding: 11px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.ysp-btn--dark-sm-lg {
    color: var(--white);
    background: var(--secondary);
    padding: 11px;
    font-size: 13.5px;
    width: 100%;
    text-align: center;
}

.ysp-btn--cta-white {
    flex: none;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--secondary);
    background: var(--white);
    padding: 14px 30px;
}

.ysp-btn--nav {
    flex: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: var(--secondary);
    padding: 9px 20px;
    letter-spacing: -0.005em;
}

.ysp-btn--submit {
    width: 100%;
    padding: 17px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.ysp-btn--submit-dark {
    grid-column: span 2;
    margin-top: 4px;
    padding: 15px;
    border-radius: var(--radius-md);
    background: var(--secondary);
    color: var(--white);
    font-size: 15.5px;
    font-weight: 600;
    width: 100%;
}

.ysp-btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ysp-brand-logo {
    display: block;
    flex: none;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    object-fit: contain;
}

.ysp-nav__brand .ysp-brand-logo {
    height: 44px;
}

.ysp-brand-logo--footer {
    height: 36px;
}

.ysp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 251, 253, 0.78);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}

.ysp-nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing-page);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ysp-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.ysp-nav__brand-text {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.ysp-nav__brand-muted {
    color: rgba(29, 29, 31, 0.5);
    font-weight: 500;
}

.ysp-nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.ysp-nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ysp-nav__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.005em;
    transition: color var(--transition);
}

.ysp-nav__link.is-active {
    color: var(--primary);
}

.ysp-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.ysp-nav__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.ysp-hero {
    position: relative;
    padding: 120px var(--spacing-page) 100px;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.ysp-hero__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.ysp-hero__media {
    margin-top: 70px;
    border-radius: var(--radius-4xl);
    overflow: hidden;
    height: 520px;
    position: relative;
    background: linear-gradient(135deg, #eceef0, #dfe1e4);
    box-shadow: var(--shadow-hero);
}

.ysp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ysp-placeholder-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(29, 29, 31, 0.4);
    text-transform: uppercase;
    pointer-events: none;
}

.ysp-placeholder-text--sm {
    font-size: 10.5px;
    letter-spacing: 0.06em;
    padding: 0 16px;
    text-align: center;
}

.ysp-placeholder-text--xs {
    font-size: 10px;
    letter-spacing: 0.05em;
    padding: 0 14px;
}

.ysp-section {
    padding: 120px var(--spacing-page);
}

.ysp-section--alt {
    background: var(--bg-alt);
}

.ysp-section--refs {
    padding: 80px var(--spacing-page);
    background: var(--bg-alt);
}

.ysp-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.ysp-section__header--products {
    margin-bottom: 60px;
}

.ysp-section__desc {
    max-width: 560px;
    margin: 0 auto;
    font-size: 16.5px;
    color: rgba(29, 29, 31, 0.6);
}

.ysp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.ysp-feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm), var(--shadow-md);
}

.ysp-feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 19px;
}

.ysp-feature-card__title {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.ysp-feature-card__body {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.ysp-form-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: 48px;
    box-shadow: var(--shadow-sm), var(--shadow-lg);
    margin-top: 24px;
}

.ysp-form-card--inline {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: center;
}

.ysp-form-card__title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.ysp-form-card__desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.ysp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ysp-input {
    width: 100%;
    padding: 15px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-input-strong);
    background: var(--bg-alt);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.ysp-input--form {
    padding: 14px 16px;
    border: 1px solid var(--border-input);
}

.ysp-input::placeholder {
    color: rgba(29, 29, 31, 0.35);
}

.ysp-input:focus {
    outline: none;
    border-color: rgba(255, 59, 48, 0.5);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.ysp-input--full {
    grid-column: span 2;
}

.ysp-input--span1 {
    grid-column: span 1;
}

.ysp-form-group {
    margin-bottom: 20px;
}

.ysp-form-group--lg {
    margin-bottom: 32px;
}

.ysp-form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(29, 29, 31, 0.7);
    margin-bottom: 8px;
}

.ysp-form-label__req {
    color: var(--primary);
}

.ysp-textarea {
    resize: vertical;
    min-height: 120px;
}

.ysp-select {
    appearance: none;
    -webkit-appearance: none;
    color: var(--text);
}

.ysp-products-section {
    padding: 120px var(--spacing-page);
    max-width: var(--container);
    margin: 0 auto;
}

.ysp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.ysp-product-card {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    padding: 28px 26px 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.ysp-product-card__image {
    border-radius: 18px;
    height: 200px;
    background: linear-gradient(135deg, #e4e6e9, #d3d6da);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.ysp-product-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.ysp-product-card__category {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.ysp-product-card__name {
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    flex: 1;
}

.ysp-cta-banner {
    max-width: var(--container);
    margin: 0 auto 120px;
    padding: 0 var(--spacing-page);
}

.ysp-cta-banner--no-bottom {
    margin-bottom: 0;
    padding-bottom: 120px;
}

.ysp-cta-banner__inner {
    background: var(--secondary);
    border-radius: var(--radius-4xl);
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ysp-about-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing-page) 130px;
}

.ysp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ysp-about__pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.ysp-about__pillar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ysp-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.ysp-about__pillar-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.ysp-about__visual {
    position: relative;
    width: 100%;
    height: 460px;
}

.ysp-about__img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 74%;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, #e4e6e9, #d3d6da);
    overflow: hidden;
    z-index: 1;
}

.ysp-about__img-main img,
.ysp-about__img-sub img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.ysp-about__img-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 46%;
    border-radius: 22px;
    background: linear-gradient(135deg, #ececee, #dcdee1);
    overflow: hidden;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.ysp-about__badge {
    position: absolute;
    top: 38%;
    left: 6%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.25);
    text-align: center;
    z-index: 3;
}

.ysp-about__badge-num {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.ysp-about__badge-text {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(29, 29, 31, 0.55);
    line-height: 1.3;
    margin-top: 2px;
}

.ysp-refs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.ysp-ref-badge {
    padding: 16px 28px;
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    color: rgba(29, 29, 31, 0.45);
    letter-spacing: -0.01em;
}

.ysp-footer {
    padding: 80px var(--spacing-page) 40px;
}

.ysp-footer--compact {
    padding-top: 0;
}

.ysp-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ysp-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
    color: inherit;
}

.ysp-footer__brand-name {
    font-size: 16px;
    font-weight: 600;
}

.ysp-footer__desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 320px;
    margin: 0;
}

.ysp-footer__desc--social {
    margin: 0 0 20px;
}

.ysp-footer__social {
    display: flex;
    gap: 10px;
}

.ysp-footer__social-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ysp-footer__heading {
    font-size: 13px;
    font-weight: 600;
    color: rgba(29, 29, 31, 0.85);
    margin-bottom: 16px;
}

.ysp-footer__contact {
    font-size: 13.5px;
    line-height: 2;
    color: var(--text-light);
}

.ysp-footer__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ysp-footer__links a {
    font-size: 13.5px;
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition);
}

.ysp-footer__links a:hover {
    color: var(--text);
}

.ysp-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.ysp-footer__address,
.ysp-footer__copy {
    font-size: 12.5px;
    color: var(--text-faint);
}

.ysp-page-hero {
    max-width: 820px;
    margin: 0 auto;
    padding: 100px var(--spacing-page) 20px;
    text-align: center;
}

.ysp-page-hero-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.ysp-page-hero-banner__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3a3d42, #1d1d1f);
}

.ysp-page-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%);
}

.ysp-page-hero-banner__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
}

.ysp-page-hero-banner__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 56px;
    text-align: center;
}

.ysp-page-hero-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.ysp-page-hero-banner__badge-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
}

.ysp-page-hero-banner__title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0;
}

.ysp-about-intro {
    max-width: 820px;
    margin: 0 auto;
    padding: 120px var(--spacing-page) 80px;
    text-align: center;
}

.ysp-stats-strip {
    max-width: var(--container);
    margin: 0 auto 100px;
    padding: 0 var(--spacing-page);
}

.ysp-stats-strip__inner {
    background: var(--bg-alt);
    border-radius: var(--radius-3xl);
    padding: 52px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center;
}

.ysp-stats-strip__inner--products {
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.ysp-stat__value {
    font-size: clamp(30px, 3.6vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.ysp-stat__value--sm {
    font-size: 28px;
}

.ysp-stat__label {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 6px;
    letter-spacing: -0.005em;
}

.ysp-stat__label--sm {
    font-size: 13px;
    margin-top: 4px;
}

.ysp-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.ysp-pillar-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 44px 38px;
    box-shadow: var(--shadow-sm), 0 24px 48px -28px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
}

.ysp-pillar-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
}

.ysp-pillar-card__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 14px;
}

.ysp-pillar-card__body {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.ysp-values-section {
    background: var(--bg-alt);
    padding: 110px var(--spacing-page);
}

.ysp-values-grid {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.ysp-values-grid--row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    max-width: none;
    overflow-x: auto;
    padding-bottom: 4px;
}

.ysp-values-grid--row .ysp-value-pill {
    margin: 0;
    flex: 0 0 auto;
    white-space: nowrap;
}

.ysp-value-pill {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 16px 26px;
    border-radius: var(--radius-pill);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    margin: 0 7px 14px;
}

.ysp-cta-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px var(--spacing-page);
}

.ysp-info-cards {
    max-width: var(--container);
    margin: 64px auto 0;
    padding: 0 var(--spacing-page);
}

.ysp-info-cards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ysp-info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm), var(--shadow-md);
}

.ysp-info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 59, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 19px;
}

.ysp-info-card__label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(29, 29, 31, 0.5);
    margin-bottom: 10px;
}

.ysp-info-card__value {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    white-space: pre-line;
}

.ysp-map-section {
    max-width: var(--container);
    margin: 20px auto 0;
    padding: 0 var(--spacing-page);
}

.ysp-map {
    border-radius: var(--radius-3xl);
    overflow: hidden;
    height: 380px;
    position: relative;
    background: #e4e6e9;
    box-shadow: var(--shadow-sm), 0 20px 50px -28px rgba(0, 0, 0, 0.14);
}

.ysp-map__iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ysp-map__label {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
    max-width: min(360px, calc(100% - 48px));
}

.ysp-map__label:hover {
    color: var(--primary);
}

.ysp-map__label-sub {
    font-weight: 400;
    color: var(--text-light);
}

.ysp-contact-form-section {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 0 var(--spacing-page) 130px;
}

.ysp-contact-form-section__header {
    text-align: center;
    margin-bottom: 44px;
}

.ysp-contact-form-section__desc {
    font-size: 16px;
    color: rgba(29, 29, 31, 0.6);
    margin: 0;
}

.ysp-quote-section {
    max-width: 840px;
    margin: 64px auto 0;
    padding: 0 var(--spacing-page) 130px;
}

.ysp-quote-card {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: 52px;
    box-shadow: var(--shadow-sm), var(--shadow-lg);
}

.ysp-quote-step {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.ysp-quote-step--spaced {
    margin-top: 20px;
}

.ysp-quote-step__num {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-sm);
    background: rgba(255, 59, 48, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.ysp-quote-step__title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0;
}

.ysp-quote-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin: 20px 0 28px;
}

.ysp-quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.ysp-quote-form-grid .ysp-input--full {
    grid-column: span 2;
}

.ysp-quote-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--text-faint);
    margin: 16px 0 0;
}

.ysp-quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.ysp-quick-contact__card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.ysp-quick-contact__icon {
    font-size: 20px;
    margin-bottom: 10px;
}

.ysp-quick-contact__label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(29, 29, 31, 0.5);
    margin-bottom: 4px;
}

.ysp-quick-contact__value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
}

.ysp-products-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding: 70px var(--spacing-page) 130px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.ysp-sidebar {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ysp-search-wrap {
    position: relative;
}

.ysp-search {
    width: 100%;
    padding: 13px 16px 13px 42px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-input);
    background: var(--bg-alt);
    font-size: 14.5px;
    font-family: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.ysp-search::placeholder {
    color: rgba(29, 29, 31, 0.35);
}

.ysp-search:focus {
    outline: none;
    border-color: rgba(255, 59, 48, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.ysp-search__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgba(29, 29, 31, 0.35);
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
}
}

.ysp-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm), var(--shadow-md);
}

.ysp-sidebar-card__title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
}

.ysp-sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ysp-sidebar-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color var(--transition);
}

.ysp-sidebar-cat.is-active {
    color: var(--primary);
    font-weight: 600;
}

.ysp-sidebar-cat__count {
    font-size: 12px;
    color: rgba(29, 29, 31, 0.4);
    background: var(--bg-alt);
    padding: 2px 9px;
    border-radius: var(--radius-pill);
}

.ysp-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.ysp-products-toolbar__count {
    font-size: 14px;
    color: rgba(29, 29, 31, 0.5);
}

.ysp-products-sort {
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-input);
    background: var(--bg-alt);
    font-size: 13.5px;
    font-family: inherit;
    color: var(--text);
}

.ysp-products-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.ysp-product-card-page {
    background: var(--white);
    border-radius: 22px;
    padding: 20px 20px 24px;
    box-shadow: var(--shadow-sm), var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ysp-product-card-page:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm), 0 30px 50px -24px rgba(0, 0, 0, 0.18);
}

.ysp-product-card-page__image {
    border-radius: 16px;
    height: 170px;
    background: linear-gradient(135deg, #eceef0, #dfe1e4);
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}

.ysp-product-card-page__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.ysp-product-card-page__name {
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    flex: 1;
    line-height: 1.35;
}

.ysp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
}

.ysp-pagination__item {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.ysp-pagination__item--active {
    background: var(--secondary);
    color: var(--white);
}

.ysp-pagination__item--inactive {
    background: var(--bg-alt);
    color: var(--text);
}

.ysp-pagination__item--arrow {
    background: var(--bg-alt);
    color: rgba(29, 29, 31, 0.4);
}

.ysp-products-stats {
    max-width: 1000px;
    margin: 56px auto 0;
    padding: 0 var(--spacing-page);
}

.ysp-form-card--standalone {
    margin-top: 0;
}

.ysp-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ysp-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ysp-cta-banner--image {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-4xl);
    overflow: hidden;
}

.ysp-cta-banner--image .ysp-cta-banner__inner {
    position: relative;
    z-index: 1;
    background: transparent;
}

.ysp-cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.72));
}

.ysp-page-hero--banner {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
}

.ysp-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
}

.ysp-page-hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 80px var(--spacing-page) 64px;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
}

.ysp-page-hero--banner .ysp-heading-page,
.ysp-page-hero--banner .ysp-text-lead--sm,
.ysp-page-hero--banner .ysp-label {
    color: var(--white);
}

.ysp-product-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ysp-product-card__actions .ysp-btn {
    width: 100%;
    justify-content: center;
}

.ysp-btn--secondary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-input-strong);
    background: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.ysp-info-card__value--link {
    color: inherit;
    text-decoration: none;
}

.ysp-info-card__value--link:hover {
    color: var(--primary);
}


.ysp-footer__address--link {
    color: inherit;
    text-decoration: none;
}

.ysp-footer__address--link:hover {
    color: var(--primary);
}

.ysp-product-detail {
    padding: 64px 0 120px;
}

.ysp-product-page__breadcrumb {
    padding-top: 24px;
}

.ysp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

.ysp-breadcrumb a {
    text-decoration: none;
    color: inherit;
}

.ysp-breadcrumb a:hover {
    color: var(--primary);
}

.ysp-breadcrumb__sep {
    color: var(--text-faint);
}

.ysp-product-hero {
    padding: 24px 0 56px;
}

.ysp-product-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
}

.ysp-product-hero__main-image {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-3xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.ysp-product-hero__main-image img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto;
}

.ysp-product-hero__title {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 8px 0 12px;
}

.ysp-product-hero__subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.ysp-product-meta {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
}

.ysp-product-meta div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    font-size: 14px;
}

.ysp-product-meta dt {
    color: var(--text-light);
    font-weight: 600;
}

.ysp-product-meta dd {
    margin: 0;
}

.ysp-product-meta__stock {
    color: #15803d;
    font-weight: 600;
}

.ysp-product-hero__excerpt {
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 24px;
}

.ysp-product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.ysp-btn--product-main {
    min-width: 180px;
}

.ysp-btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: background var(--transition), transform var(--transition);
}

.ysp-btn--whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}

.ysp-product-card__actions .ysp-btn--whatsapp {
    width: 100%;
    font-size: 14px;
    padding: 12px 18px;
}

.ysp-product-hero__support {
    font-size: 13px;
    color: var(--text-light);
}

.ysp-product-body {
    padding-bottom: 100px;
}

.ysp-product-body__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    align-items: start;
}

.ysp-product-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-3xl);
    padding: 36px;
}

.ysp-product-content__header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.ysp-product-content__lead {
    margin: 10px 0 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.ysp-product-block {
    margin-bottom: 28px;
}

.ysp-product-block__title {
    font-size: 18px;
    margin: 0 0 12px;
}

.ysp-product-features {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 10px;
}

.ysp-product-features li {
    line-height: 1.6;
    color: var(--text-muted);
}

.ysp-product-specs-wrap {
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.ysp-product-specs {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ysp-product-specs th,
.ysp-product-specs td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.ysp-product-specs th {
    width: 38%;
    background: var(--bg-alt);
    color: var(--text);
    font-weight: 600;
}

.ysp-product-specs tr:last-child th,
.ysp-product-specs tr:last-child td {
    border-bottom: none;
}

.ysp-product-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 88px;
}

.ysp-product-sidebar-list {
    display: grid;
    gap: 12px;
}

.ysp-product-sidebar-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.ysp-product-sidebar-item:hover {
    background: var(--bg-alt);
}

.ysp-product-sidebar-item img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
}

.ysp-product-sidebar-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.ysp-product-sidebar-item small {
    color: var(--text-muted);
    line-height: 1.4;
}

.ysp-sidebar-card--cta p {
    margin: 0 0 16px;
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 14px;
}

.ysp-product-related {
    padding: 0 0 120px;
}

.ysp-product-related .ysp-section__header {
    margin-bottom: 28px;
}

.ysp-empty-state {
    padding: 48px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.ysp-search__icon {
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.ysp-wa {
    --ysp-wa-green: #25d366;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.ysp-wa__panel {
    width: min(360px, calc(100vw - 32px));
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.35);
    display: none;
}

.ysp-wa.is-open .ysp-wa__panel {
    display: block;
}

.ysp-wa__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: var(--ysp-wa-green);
    color: var(--white);
}

.ysp-wa__header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.ysp-wa__close {
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
}

.ysp-wa__body {
    padding: 18px;
}

.ysp-wa__intro {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--text-light);
}

.ysp-wa__agent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.ysp-wa__agent:last-child {
    margin-bottom: 0;
}

.ysp-wa__agent:hover {
    border-color: rgba(37, 211, 102, 0.45);
    box-shadow: 0 10px 24px -18px rgba(37, 211, 102, 0.8);
    transform: translateY(-1px);
}

.ysp-wa__agent-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ysp-wa__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ysp-wa-green);
}

.ysp-wa__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ysp-wa-green);
}

.ysp-wa__agent-icon {
    flex: none;
    color: var(--ysp-wa-green);
}

.ysp-wa__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: 0;
    border-radius: 999px;
    background: var(--ysp-wa-green);
    color: var(--white);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 30px -16px rgba(37, 211, 102, 0.9);
    transition: transform var(--transition), box-shadow var(--transition);
}

.ysp-wa__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -14px rgba(37, 211, 102, 0.95);
}

.ysp-wa.is-open .ysp-wa__toggle {
    box-shadow: 0 10px 24px -14px rgba(37, 211, 102, 0.85);
}
