/* About Us — aligned with contact-us / order-guide */

.about-page {
    padding: 1.5rem 0 4rem;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 24rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 18rem);
}

.about-page__hero {
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 1.75rem;
    border: 1px solid rgba(191, 219, 254, 0.75);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.96));
    box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.about-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.about-page__hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    font-weight: 800;
    color: #0f172a;
}

.about-page__hero p {
    margin: 0;
    max-width: 46rem;
    font-size: 1rem;
    line-height: 2;
    color: #475569;
}

.about-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
    gap: 1.35rem;
    align-items: start;
}

.about-page__main,
.about-page__aside {
    min-width: 0;
}

.about-page__aside {
    position: sticky;
    top: 7.25rem;
    z-index: 5;
    display: grid;
    gap: 1rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e6edf5;
    border-radius: 22px;
    padding: 1.35rem 1.4rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.about-card__head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.about-card__icon {
    width: 2.55rem;
    height: 2.55rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 1.15rem;
}

.about-card__eyebrow {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
}

.about-card__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
}

.about-page__content.product-description-content {
    color: #334155;
    line-height: 2.05;
}

.about-page__content.product-description-content p,
.about-page__content.product-description-content li {
    line-height: 2.05 !important;
    font-size: 1rem !important;
    min-height: 1.2em;
}

.about-page__content.product-description-content > *:first-child {
    margin-top: 0;
}

.about-page__content.product-description-content > *:last-child {
    margin-bottom: 0;
}

.about-page__empty {
    margin: 0;
    color: #94a3b8;
    line-height: 2;
}

.about-highlights {
    display: grid;
    gap: 0.75rem;
}

.about-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.9rem 0.95rem;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.about-highlight__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1rem;
}

.about-highlight strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #0f172a;
    font-size: 0.95rem;
}

.about-highlight span {
    display: block;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.8;
}

.about-aside-card__title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.about-cta {
    display: grid;
    gap: 0.65rem;
}

.about-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.about-cta a:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.about-cta__primary,
.about-cta__primary:link,
.about-cta__primary:visited {
    background: #1d4ed8;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.22);
}

.about-cta__primary:hover,
.about-cta__primary:focus,
.about-cta__primary:active {
    background: #1e40af;
    color: #fff !important;
}

.about-cta__ghost,
.about-cta__ghost:link,
.about-cta__ghost:visited {
    background: #eff6ff;
    color: #1d4ed8 !important;
    border: 1px solid #bfdbfe;
}

.about-cta__ghost:hover,
.about-cta__ghost:focus,
.about-cta__ghost:active {
    background: #dbeafe;
    color: #1e40af !important;
}

@media (max-width: 991.98px) {
    .about-page {
        padding-top: 1rem;
    }

    .about-page__hero {
        padding: 1.4rem 1.2rem;
        border-radius: 18px;
    }

    .about-page__layout {
        grid-template-columns: 1fr;
    }

    .about-page__aside {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .about-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .about-page__hero h1 {
        font-size: 1.8rem;
    }
}
/* ===== Dark mode ===== */
html[data-bs-theme="dark"] .about-page,
body.dark .about-page {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 24rem),
        linear-gradient(180deg, #12171e 0%, #0f1419 18rem);
}

html[data-bs-theme="dark"] .about-page__hero,
body.dark .about-page__hero {
    border-color: rgba(96, 165, 250, 0.18);
    background: linear-gradient(135deg, rgba(26, 34, 45, 0.98), rgba(22, 30, 42, 0.96));
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

html[data-bs-theme="dark"] .about-page__eyebrow,
body.dark .about-page__eyebrow {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

html[data-bs-theme="dark"] .about-page__hero h1,
html[data-bs-theme="dark"] .about-card__title,
html[data-bs-theme="dark"] .about-aside-card__title,
html[data-bs-theme="dark"] .about-highlight strong,
body.dark .about-page__hero h1,
body.dark .about-card__title,
body.dark .about-aside-card__title,
body.dark .about-highlight strong {
    color: #e8eef7;
}

html[data-bs-theme="dark"] .about-page__hero p,
html[data-bs-theme="dark"] .about-card__eyebrow,
html[data-bs-theme="dark"] .about-highlight span,
html[data-bs-theme="dark"] .about-page__empty,
body.dark .about-page__hero p,
body.dark .about-card__eyebrow,
body.dark .about-highlight span,
body.dark .about-page__empty {
    color: #9aa8b8;
}

html[data-bs-theme="dark"] .about-card,
body.dark .about-card {
    background: rgba(26, 34, 45, 0.96);
    border-color: rgba(148, 163, 184, 0.14);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

html[data-bs-theme="dark"] .about-card__icon,
html[data-bs-theme="dark"] .about-highlight__icon,
body.dark .about-card__icon,
body.dark .about-highlight__icon {
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
}

html[data-bs-theme="dark"] .about-page__content.product-description-content,
body.dark .about-page__content.product-description-content {
    color: #c5d0dc;
}

html[data-bs-theme="dark"] .about-highlight,
body.dark .about-highlight {
    background: linear-gradient(180deg, rgba(22, 30, 42, 0.95) 0%, rgba(18, 24, 33, 0.95) 100%);
    border-color: rgba(148, 163, 184, 0.14);
}

html[data-bs-theme="dark"] .about-cta__primary,
html[data-bs-theme="dark"] .about-cta__primary:link,
html[data-bs-theme="dark"] .about-cta__primary:visited,
body.dark .about-cta__primary,
body.dark .about-cta__primary:link,
body.dark .about-cta__primary:visited {
    background: #3b82f6;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.28);
}

html[data-bs-theme="dark"] .about-cta__primary:hover,
html[data-bs-theme="dark"] .about-cta__primary:focus,
body.dark .about-cta__primary:hover,
body.dark .about-cta__primary:focus {
    background: #2563eb;
    color: #fff !important;
}

html[data-bs-theme="dark"] .about-cta__ghost,
html[data-bs-theme="dark"] .about-cta__ghost:link,
html[data-bs-theme="dark"] .about-cta__ghost:visited,
body.dark .about-cta__ghost,
body.dark .about-cta__ghost:link,
body.dark .about-cta__ghost:visited {
    background: rgba(59, 130, 246, 0.14);
    color: #93c5fd !important;
    border-color: rgba(96, 165, 250, 0.28);
}

html[data-bs-theme="dark"] .about-cta__ghost:hover,
html[data-bs-theme="dark"] .about-cta__ghost:focus,
body.dark .about-cta__ghost:hover,
body.dark .about-cta__ghost:focus {
    background: rgba(59, 130, 246, 0.22);
    color: #bfdbfe !important;
}
