/* About page (web module) */
body.page-web.page-about {
    background: var(--web-bg);
}

body.page-web.page-about .web-app {
    min-height: 100vh;
}

.about-trust {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dce9f8 0%, #edf4fc 42%, #f5f9ff 100%);
}

.about-trust-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about-trust-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--web-blue-glow) 1px, transparent 1px),
        linear-gradient(90deg, var(--web-blue-glow) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, #000 20%, transparent 75%);
}

.about-trust-bg-cube {
    position: absolute;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(191, 219, 254, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 24px var(--web-blue-glow);
}

.about-trust-bg-cube-1 { width: 42px; height: 42px; top: 16%; right: 10%; transform: rotate(12deg); opacity: 0.75; }
.about-trust-bg-cube-2 { width: 30px; height: 30px; top: 34%; right: 18%; transform: rotate(-16deg); opacity: 0.55; }
.about-trust-bg-cube-3 { width: 24px; height: 24px; bottom: 32%; right: 8%; transform: rotate(22deg); opacity: 0.45; }

.about-trust-bg-glow {
    position: absolute;
    top: 8%;
    right: 6%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.4) 0%, rgba(147, 197, 253, 0) 68%);
}

.about-trust-inner {
    position: relative;
    z-index: 1;
    padding: 120px 0 56px;
    text-align: center;
}

.about-trust-head {
    margin-bottom: 36px;
}

.about-trust-title-wrap {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 0 auto 12px;
}

.about-trust-title {
    margin: 0;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.about-vision-link {
    position: absolute;
    top: -2px;
    left: calc(100% + 12px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 6px 24px var(--web-blue-glow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: aboutVisionLinkFloat 3.2s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-vision-link::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.15), rgba(99, 102, 241, 0.45), rgba(56, 189, 248, 0.15));
    background-size: 200% auto;
    animation: aboutVisionLinkBorder 3s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-vision-link:hover {
    animation-play-state: paused;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 28px var(--web-blue-glow);
}

.about-vision-link-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--web-blue-light), var(--web-blue));
    box-shadow: 0 4px 12px var(--web-blue-glow);
    animation: aboutVisionIconPulse 2.4s ease-in-out infinite;
}

.about-vision-link-text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: linear-gradient(90deg, #0f172a 0%, var(--web-blue) 50%, #0f172a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: aboutVisionTextShimmer 4s linear infinite;
}

@keyframes aboutVisionLinkFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes aboutVisionLinkBorder {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes aboutVisionIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px var(--web-blue-glow); }
    50% { transform: scale(1.08); box-shadow: 0 6px 18px var(--web-blue-glow); }
}

@keyframes aboutVisionTextShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@media (prefers-reduced-motion: reduce) {
    .about-vision-link,
    .about-vision-link::before,
    .about-vision-link-icon,
    .about-vision-link-text {
        animation: none;
    }
}


.about-trust-subtitle {
    margin: 0 auto;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.75;
    color: #64748b;
}

.about-trust-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.about-trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 8px 32px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.about-trust-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-trust-card-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.about-trust-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 12px 36px rgba(15, 23, 42, 0.1);
}

.about-trust-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    color: #1e3a5f;
}

.about-trust-stats {
    position: relative;
    z-index: 2;
    background: #fff;
    border-top: 1px solid #e8eef5;
    box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.04);
}

.about-trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-trust-stat {
    padding: 28px 20px;
    text-align: center;
    border-right: 1px solid #edf2f7;
}

.about-trust-stat:last-child {
    border-right: none;
}

.about-trust-stat strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--web-blue);
}

.about-trust-stat em {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.about-section-title {
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
}

.about-section-title.center {
    text-align: center;
    margin-bottom: 36px;
}

.about-section-desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.75;
    color: #64748b;
}

.about-section-desc.center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.about-orbit-section {
    padding: 64px 0;
    background: #f8fafc;
}

.about-orbit-layout {
    display: grid;
    grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
    gap: 48px 56px;
    align-items: center;
}

.about-orbit-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-orbit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-orbit-hub {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    margin: 0;
}

.about-orbit-desc {
    margin: 24px 0 0;
    max-width: 360px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #64748b;
    text-align: center;
}

.about-orbit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72%;
    height: 72%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 219, 254, 0.6) 0%, rgba(219, 234, 254, 0.25) 45%, rgba(255, 255, 255, 0) 72%);
    animation: aboutOrbitGlow 4s ease-in-out infinite;
}

@keyframes aboutOrbitGlow {
    0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

.about-orbit-ring-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.about-orbit-ring-wrap--1 {
    width: 100%;
    height: 100%;
    animation: aboutOrbitSpin 28s linear infinite;
}

.about-orbit-ring-wrap--2 {
    width: 74%;
    height: 74%;
    animation: aboutOrbitSpin 36s linear infinite reverse;
}

.about-orbit-ring-wrap--3 {
    width: 50%;
    height: 50%;
    animation: aboutOrbitSpin 22s linear infinite;
}

.about-orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(147, 197, 253, 0.45);
}

.about-orbit-ring--1 { border-color: rgba(147, 197, 253, 0.35); }
.about-orbit-ring--2 { border-color: rgba(147, 197, 253, 0.5); }
.about-orbit-ring--3 { border-color: rgba(191, 219, 254, 0.7); }

.about-orbit-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--web-blue);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-orbit-ring-wrap--1 .about-orbit-icon { animation: aboutOrbitCounter28 28s linear infinite; }
.about-orbit-ring-wrap--2 .about-orbit-icon { animation: aboutOrbitCounter36 36s linear infinite; }
.about-orbit-ring-wrap--3 .about-orbit-icon { animation: aboutOrbitCounter22 22s linear infinite; }

.about-orbit-icon--a { top: 4%; left: 50%; margin-left: -18px; }
.about-orbit-icon--b { bottom: 12%; right: 8%; }
.about-orbit-icon--c { top: 10%; left: 6%; }
.about-orbit-icon--d { bottom: 8%; right: 10%; }
.about-orbit-icon--e { top: 50%; left: -4px; margin-top: -18px; }
.about-orbit-icon--f { top: 6%; right: 2%; }
.about-orbit-icon--g { bottom: 6%; right: 4%; }

@keyframes aboutOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes aboutOrbitCounter28 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes aboutOrbitCounter36 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes aboutOrbitCounter22 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.about-orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.about-orbit-core-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(96, 165, 250, 0.35);
    animation: aboutOrbitPulse 3s ease-out infinite;
}

.about-orbit-core-pulse--2 { animation-delay: 1.5s; }

@keyframes aboutOrbitPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.about-orbit-logo {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    object-fit: contain;
    animation: aboutOrbitLogoFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.2));
}

@keyframes aboutOrbitLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-adv-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-adv-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-adv-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 1);
}

.about-adv-card-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--web-blue);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 1);
}

.about-adv-card-body {
    min-width: 0;
}

.about-adv-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.45;
}

.about-adv-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #64748b;
}

.about-content-section {
    position: relative;
    padding: 48px 0 64px;
    background: #f8fafc;
    overflow: hidden;
}

.about-content-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-content-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--web-blue-glow) 1px, transparent 1px),
        linear-gradient(90deg, var(--web-blue-glow) 1px, transparent 1px);
    background-size: 48px 48px;
}

.about-content-section > .web-container {
    position: relative;
    z-index: 1;
}

.about-content-heading {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}

body.page-about .about-content-card.detail-card {
    padding: 40px;
}

@media (max-width: 992px) {
    .about-trust-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-orbit-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-orbit-left .about-orbit-visual {
        justify-content: center;
    }
    .about-orbit-desc {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .about-trust-inner { padding: 88px 0 28px; }
    .about-vision-link {
        top: -4px;
        left: calc(100% + 8px);
        padding: 5px 10px 5px 6px;
        gap: 6px;
    }
    .about-vision-link-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .about-vision-link-text {
        font-size: 12px;
    }
    .about-trust-cards { grid-template-columns: 1fr; }
    .about-trust-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-trust-stat:nth-child(2) { border-right: none; }
    .about-trust-stat:nth-child(1),
    .about-trust-stat:nth-child(2) { border-bottom: 1px solid #edf2f7; }
    .about-orbit-hub { max-width: 300px; }
    .about-orbit-icon { width: 32px; height: 32px; font-size: 12px; }
    .about-orbit-icon--a { margin-left: -16px; }
    .about-orbit-icon--e { margin-top: -16px; }
    .about-orbit-logo { width: 52px; height: 52px; }
    .about-orbit-core { width: 80px; height: 80px; }
}

/* Contact promo panel */
.web-contact-promo {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100%;
    padding: 40px 36px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(240, 248, 255, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 16px 48px rgba(26, 109, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.web-contact-promo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.web-contact-promo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.55;
    animation: webContactBlobFloat 8s ease-in-out infinite;
}

.web-contact-promo-blob--1 {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -30px;
    background: rgba(96, 165, 250, 0.45);
}

.web-contact-promo-blob--2 {
    width: 140px;
    height: 140px;
    bottom: 10%;
    left: -30px;
    background: rgba(59, 130, 246, 0.35);
    animation-delay: -2.5s;
}

.web-contact-promo-blob--3 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    right: 20%;
    background: rgba(147, 197, 253, 0.5);
    animation-delay: -5s;
}

.web-contact-promo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 50%;
    animation: webContactRingPulse 4s ease-in-out infinite;
}

@keyframes webContactBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -16px) scale(1.08); }
}

@keyframes webContactRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.06); opacity: 0.85; }
}

.web-contact-promo-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.web-contact-promo-eyebrow {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--web-blue, #1a6dff);
}

.web-contact-promo-title {
    margin: 0 0 20px;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--web-text, #0f172a);
}

.web-contact-promo-rotate-wrap {
    display: inline-block;
    position: relative;
    min-width: 4em;
    vertical-align: bottom;
}

.web-contact-promo-rotate {
    display: inline-block;
    background: linear-gradient(
        90deg,
        #1a6dff 0%,
        #3b82f6 25%,
        #60a5fa 50%,
        #3b82f6 75%,
        #1a6dff 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: webContactGradientFlow 3s linear infinite;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.web-contact-promo-rotate.is-out {
    opacity: 0;
    transform: translateY(12px);
}

.web-contact-promo-rotate.is-in {
    animation: webContactGradientFlow 3s linear infinite, webContactWordIn 0.4s ease forwards;
}

@keyframes webContactGradientFlow {
    0% { background-position: 100% 50%; }
    100% { background-position: -100% 50%; }
}

@keyframes webContactWordIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

.web-contact-promo-desc {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--web-text-muted, #64748b);
    max-width: 36em;
}

.web-contact-promo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.web-contact-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--web-text, #0f172a);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(26, 109, 255, 0.12);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(26, 109, 255, 0.06);
    opacity: 0;
    transform: translateY(10px);
    animation: webContactTagIn 0.5s ease forwards;
}

.web-contact-promo-tag:nth-child(1) { animation-delay: 0.15s; }
.web-contact-promo-tag:nth-child(2) { animation-delay: 0.3s; }
.web-contact-promo-tag:nth-child(3) { animation-delay: 0.45s; }

.web-contact-promo-tag i {
    font-size: 14px;
    color: var(--web-blue, #1a6dff);
}

@keyframes webContactTagIn {
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .web-contact-promo {
        padding: 32px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-orbit-ring-wrap,
    .about-orbit-icon,
    .about-orbit-glow,
    .about-orbit-logo,
    .about-orbit-core-pulse,
    .web-contact-promo-blob,
    .web-contact-promo-ring,
    .web-contact-promo-rotate,
    .web-contact-promo-tag {
        animation: none !important;
    }

    .web-contact-promo-tag {
        opacity: 1;
        transform: none;
    }
}
