/* ================================
   About Page
================================ */

.about-page {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.about-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 18%, rgba(94, 234, 212, 0.08), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.14), transparent 34%),
        radial-gradient(circle at 50% 92%, rgba(34, 211, 238, 0.07), transparent 32%);
}

/* Breadcrumb */
.about-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
    color: var(--soft);
    font-size: 13px;
    font-weight: 800;
}

.about-breadcrumb a {
    color: var(--soft);
    transition: color 0.25s ease;
}

.about-breadcrumb a:hover {
    color: var(--mint);
}

.about-breadcrumb strong {
    color: var(--mint);
}

/* Shared */
.about-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(94, 234, 212, 0.2);
    background: rgba(15, 23, 42, 0.72);
    color: var(--mint);
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 18px;
    backdrop-filter: blur(12px);
}

.about-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 18px rgba(94, 234, 212, 0.9);
}

.about-ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 23px;
    border-radius: 999px;
    border: 1px solid rgba(94, 234, 212, 0.22);
    background: rgba(15, 23, 42, 0.55);
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
}

.about-ghost-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(94, 234, 212, 0.42);
    background: rgba(94, 234, 212, 0.08);
}

.about-section-head {
    max-width: 820px;
    margin-bottom: 32px;
}

.about-section-head.center {
    text-align: center;
    margin-inline: auto;
}

.about-section-head.center .about-eyebrow {
    margin-inline: auto;
}

.about-section-head h2 {
    color: var(--text);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.45;
    font-weight: 950;
    margin-bottom: 12px;
}

.about-section-head p {
    color: var(--soft);
    font-size: 15px;
    line-height: 2;
}

/* Reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   Hero
================================ */

.about-hero {
    padding: 85px 0 62px;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    gap: 48px;
    align-items: center;
}

.about-hero__content h1 {
    max-width: 860px;
    color: var(--text);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}

.about-hero__content h1 span {
    color: var(--mint);
    text-shadow: 0 0 35px rgba(94, 234, 212, 0.18);
}

.about-hero__content p {
    max-width: 760px;
    color: var(--soft);
    font-size: 16px;
    line-height: 2.1;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-hero__visual {
    position: relative;
}

.about-hero__image {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 38px;
    border: 1px solid rgba(94, 234, 212, 0.18);
    background: rgba(15, 23, 42, 0.75);
    box-shadow: 0 38px 95px rgba(0, 0, 0, 0.42);
    transform: rotate(-1.4deg);
}

.about-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(2, 6, 23, 0.78), transparent 58%),
        radial-gradient(circle at 15% 20%, rgba(94, 234, 212, 0.13), transparent 35%);
}

.about-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    z-index: 3;
    min-width: 150px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(94, 234, 212, 0.22);
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.about-floating-card strong {
    display: block;
    color: var(--mint);
    font-size: 32px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 8px;
}

.about-floating-card span {
    display: block;
    color: var(--soft);
    font-size: 12px;
    font-weight: 800;
}

.about-floating-card.card-one {
    right: 24px;
    bottom: 24px;
}

.about-floating-card.card-two {
    left: 24px;
    top: 24px;
}

.about-orbit {
    position: absolute;
    inset: -25px;
    pointer-events: none;
    z-index: -1;
    border-radius: 42px;
    border: 1px solid rgba(94, 234, 212, 0.08);
    animation: aboutOrbit 7s ease-in-out infinite alternate;
}

.about-orbit span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 22px rgba(94, 234, 212, 0.9);
}

.about-orbit span:nth-child(1) {
    top: 14%;
    right: 4%;
}

.about-orbit span:nth-child(2) {
    bottom: 19%;
    left: 6%;
}

.about-orbit span:nth-child(3) {
    top: 48%;
    left: -4px;
}

@keyframes aboutOrbit {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(2deg) scale(1.02);
    }
}

/* ================================
   Intro
================================ */

.about-intro {
    padding: 36px 0 52px;
}

.about-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: stretch;
}

.about-intro__text {
    padding: 36px;
    border-radius: 34px;
    border: 1px solid rgba(94, 234, 212, 0.13);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(8, 13, 28, 0.96));
    box-shadow: var(--shadow);
}

.about-intro__text h2 {
    color: var(--text);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.45;
    font-weight: 950;
    margin-bottom: 18px;
}

.about-intro__text p {
    color: var(--soft);
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 14px;
}

.about-intro__text p:last-child {
    margin-bottom: 0;
}

.about-intro__card {
    padding: 32px;
    border-radius: 34px;
    border: 1px solid rgba(94, 234, 212, 0.15);
    background:
        radial-gradient(circle at 20% 0%, rgba(94, 234, 212, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(8, 13, 28, 0.98));
    box-shadow: var(--shadow);
}

.about-intro__card h3 {
    color: var(--text);
    font-size: 24px;
    font-weight: 950;
    margin-bottom: 24px;
}

.about-intro__card ul {
    display: grid;
    gap: 18px;
}

.about-intro__card li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
}

.about-intro__card li > span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(94, 234, 212, 0.1);
    color: var(--mint);
    font-size: 14px;
    font-weight: 950;
}

.about-intro__card strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 950;
    margin-bottom: 7px;
}

.about-intro__card p {
    color: var(--soft);
    font-size: 13px;
    line-height: 1.9;
}

/* ================================
   Stats
================================ */

.about-stats-section {
    padding: 24px 0 52px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-stat-card {
    position: relative;
    overflow: hidden;
    padding: 30px 22px;
    border-radius: 30px;
    border: 1px solid rgba(94, 234, 212, 0.14);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(8, 13, 28, 0.95));
    box-shadow: var(--shadow);
    text-align: center;
}

.about-stat-card::before {
    content: "";
    position: absolute;
    top: -55px;
    left: 50%;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: rgba(94, 234, 212, 0.08);
}

.about-stat-card strong {
    position: relative;
    display: block;
    color: var(--mint);
    font-size: 44px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 12px;
}

.about-stat-card strong::before {
    content: "+";
    font-size: 24px;
    margin-left: 3px;
}

.about-stat-card:nth-child(4) strong::before {
    content: "";
}

.about-stat-card:nth-child(4) strong::after {
    content: "%";
    font-size: 22px;
    margin-right: 3px;
}

.about-stat-card span {
    position: relative;
    color: var(--soft);
    font-size: 13px;
    font-weight: 900;
}

/* ================================
   Values
================================ */

.about-values {
    padding: 40px 0 56px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-value-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 26px;
    border-radius: 30px;
    border: 1px solid rgba(94, 234, 212, 0.13);
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(8, 13, 28, 0.98));
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(94, 234, 212, 0.34);
}

.about-value-card::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(94, 234, 212, 0.08);
}

.value-icon {
    position: relative;
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(94, 234, 212, 0.1);
    color: var(--mint);
    font-size: 15px;
    font-weight: 950;
    margin-bottom: 20px;
}

.about-value-card h3 {
    position: relative;
    color: var(--text);
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 12px;
}

.about-value-card p {
    position: relative;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.95;
}

/* ================================
   Timeline
================================ */

.about-timeline-section {
    padding: 40px 0 58px;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 22px;
    padding-right: 28px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 8px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(94, 234, 212, 0.55), transparent);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 18px;
}

.timeline-dot {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 26px rgba(94, 234, 212, 0.9);
    margin-top: 28px;
}

.timeline-content {
    padding: 26px;
    border-radius: 28px;
    border: 1px solid rgba(94, 234, 212, 0.13);
    background: rgba(15, 23, 42, 0.78);
    box-shadow: var(--shadow);
}

.timeline-content span {
    display: block;
    color: var(--mint);
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: var(--text);
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--soft);
    font-size: 14px;
    line-height: 1.95;
}

/* ================================
   Expertise
================================ */

.about-expertise {
    padding: 38px 0 58px;
}

.about-expertise__grid {
    display: grid;
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: center;
}

.about-expertise__image {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(94, 234, 212, 0.16);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: var(--shadow);
}

.about-expertise__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.72), transparent 62%);
}

.about-expertise__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    max-width: 260px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(94, 234, 212, 0.2);
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(12px);
}

.expertise-badge strong {
    display: block;
    color: var(--mint);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 8px;
}

.expertise-badge span {
    color: var(--soft);
    font-size: 13px;
    line-height: 1.8;
}

.about-expertise__content h2 {
    color: var(--text);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.45;
    font-weight: 950;
    margin-bottom: 18px;
}

.about-expertise__content p {
    color: var(--soft);
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 24px;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.expertise-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(94, 234, 212, 0.13);
    background: rgba(15, 23, 42, 0.68);
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.expertise-list span {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 16px rgba(94, 234, 212, 0.9);
}

/* ================================
   Why Us
================================ */

.about-why {
    padding: 36px 0 58px;
}

.about-why__box {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 38px;
    border-radius: 36px;
    border: 1px solid rgba(94, 234, 212, 0.15);
    background:
        radial-gradient(circle at 15% 0%, rgba(94, 234, 212, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 13, 28, 0.98));
    box-shadow: var(--shadow);
}

.about-why__content h2 {
    color: var(--text);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.45;
    font-weight: 950;
    margin-bottom: 16px;
}

.about-why__content p {
    color: var(--soft);
    line-height: 2.05;
    font-size: 15px;
}

.about-why__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.why-feature {
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(94, 234, 212, 0.13);
    background: rgba(8, 13, 28, 0.72);
}

.why-feature strong {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(94, 234, 212, 0.1);
    color: var(--mint);
    font-size: 14px;
    font-weight: 950;
    margin-bottom: 16px;
}

.why-feature span {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 950;
    line-height: 1.8;
}

/* ================================
   CTA
================================ */

.about-cta {
    padding: 26px 0 20px;
}

.about-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 40px;
    border-radius: 36px;
    border: 1px solid rgba(94, 234, 212, 0.16);
    background:
        radial-gradient(circle at 15% 0%, rgba(94, 234, 212, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 13, 28, 0.98));
    box-shadow: var(--shadow);
}

.about-cta__box h2 {
    color: var(--text);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
    line-height: 1.4;
    margin-bottom: 12px;
}

.about-cta__box p {
    max-width: 700px;
    color: var(--soft);
    line-height: 1.95;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1150px) {
    .about-hero__grid,
    .about-intro__grid,
    .about-expertise__grid,
    .about-why__box {
        grid-template-columns: 1fr;
    }

    .about-hero__image,
    .about-expertise__image {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta__box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .about-hero {
        padding: 70px 0 44px;
    }

    .about-hero__image,
    .about-expertise__image {
        height: 410px;
        border-radius: 28px;
    }

    .about-floating-card {
        min-width: 130px;
        padding: 15px;
    }

    .about-floating-card strong {
        font-size: 27px;
    }

    .about-values-grid,
    .about-stats-grid,
    .expertise-list,
    .about-why__features {
        grid-template-columns: 1fr;
    }

    .about-intro__text,
    .about-intro__card,
    .about-why__box,
    .about-cta__box {
        padding: 26px;
    }

    .timeline-content {
        padding: 22px;
    }
}

@media (max-width: 540px) {
    .about-hero__actions,
    .about-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .about-hero__actions a,
    .about-cta__actions a {
        width: 100%;
    }

    .about-hero__image,
    .about-expertise__image {
        height: 340px;
    }

    .about-floating-card.card-two {
        display: none;
    }

    .about-floating-card.card-one {
        right: 16px;
        bottom: 16px;
    }

    .about-intro__card li {
        grid-template-columns: 1fr;
    }

    .about-timeline {
        padding-right: 18px;
    }

    .about-timeline::before {
        right: 7px;
    }

    .timeline-item {
        grid-template-columns: 16px 1fr;
        gap: 12px;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
    }
}
