/* ═══════════════════════════════════════════════════════════════
   GlobalVisaWay — About page revamp
   The structure follows the approved reference while every colour,
   surface and text treatment inherits the site's active theme.
═══════════════════════════════════════════════════════════════ */

.gvw-about-page {
    --about-panel: color-mix(in srgb, var(--surface-2) 88%, transparent);
    --about-card: color-mix(in srgb, var(--surface-3) 94%, transparent);
    --about-card-hover: color-mix(in srgb, var(--surface-4) 94%, transparent);
    --about-border: var(--border-med);
    --about-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    --about-shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.09);
    --about-stat-start: #0d2f54;
    --about-stat-end: #071a31;
    --about-stat-text: #ffffff;
    --about-stat-muted: rgba(255, 255, 255, 0.76);
    position: relative;
    overflow: clip;
    color: var(--text-body);
    background:
        radial-gradient(circle at 88% 7%, var(--gold-a08), transparent 26%),
        radial-gradient(circle at 4% 42%, rgba(var(--cold-rgb), 0.06), transparent 30%),
        var(--page-bg);
}

html[data-theme="warm"] .gvw-about-page {
    --about-stat-start: #422b19;
    --about-stat-end: #1f1610;
}

html[data-theme="ocean"] .gvw-about-page {
    --about-stat-start: #0d4961;
    --about-stat-end: #062638;
}

html[data-theme="light"] .gvw-about-page {
    --about-panel: rgba(255, 255, 255, 0.48);
    --about-card: rgba(255, 255, 255, 0.68);
    --about-card-hover: rgba(255, 255, 255, 0.88);
    --about-shadow: 0 18px 46px rgba(46, 39, 26, 0.09);
    --about-shadow-soft: 0 10px 28px rgba(46, 39, 26, 0.07);
    --about-stat-start: #173b62;
    --about-stat-end: #0b2440;
}

.gvw-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.gvw-about-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.gvw-about-managed-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ───────────────────────── Hero ───────────────────────── */
.gvw-about-hero {
    position: relative;
    isolation: isolate;
    padding-block: clamp(28px, 2.8vw, 48px) clamp(20px, 2vw, 34px);
}

.gvw-about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, var(--gold-a04), transparent 40%),
        linear-gradient(180deg, var(--surface-1), transparent 74%);
    pointer-events: none;
}

.gvw-about-hero__container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
    gap: clamp(24px, 3vw, 52px);
    align-items: center;
}

.gvw-about-hero__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 670px;
}

.gvw-about-hero__title {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    margin-top: 9px;
    color: var(--text-strong);
    font-size: clamp(34px, 2.75vw, 54px);
    font-weight: 800;
    line-height: 1.055;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.gvw-about-hero__title strong {
    color: var(--gold);
    font: inherit;
    text-shadow: 0 0 22px var(--gold-a10);
}

.gvw-about-hero__lead,
.gvw-about-hero__supporting {
    width: min(100%, 620px);
    color: var(--text-body);
    font-size: clamp(14px, 0.82vw, 16px);
    line-height: 1.62;
}

.gvw-about-hero__lead {
    margin-top: 15px;
}

.gvw-about-hero__supporting {
    margin-top: 7px;
    color: var(--text-dim);
}

.gvw-about-hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(18px, 2vw, 28px);
    border-top: 1px solid var(--border-soft);
}

.gvw-about-hero-feature {
    display: grid;
    justify-items: center;
    align-content: start;
    min-width: 0;
    padding: 12px 9px 0;
    text-align: center;
}

.gvw-about-hero-feature+.gvw-about-hero-feature {
    border-left: 1px solid var(--border-soft);
}

.gvw-about-hero-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
    color: var(--gold);
}

.gvw-about-hero-feature__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.gvw-about-hero-feature__copy h2 {
    color: var(--text-strong);
    font-size: clamp(11.5px, 0.7vw, 13px);
    font-weight: 750;
    line-height: 1.25;
}

.gvw-about-hero-feature__copy p {
    margin-top: 3px;
    color: var(--text-faint);
    font-size: 10.5px;
    line-height: 1.4;
}

.gvw-about-hero__visual {
    position: relative;
    min-width: 0;
    min-height: 0;
    height: clamp(330px, 26vw, 450px);
    align-self: center;

    /* Apply the complete shape here */
    border-radius: clamp(18px, 1.6vw, 28px);
    overflow: hidden;
    isolation: isolate;

    background: var(--page-bg);
}

/* Keep the gradient inside the rounded wrapper */
.gvw-about-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(90deg,
            var(--page-bg) 0%,
            transparent 14%),
        linear-gradient(0deg,
            var(--page-bg) 0%,
            transparent 10%);

    border-radius: inherit;
    pointer-events: none;
}

.gvw-about-hero__image,
.gvw-about-hero__visual--image img {
    position: relative;
    z-index: 1;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 72% center;

    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            #000 13%,
            #000 100%);
    mask-image: linear-gradient(90deg,
            transparent 0%,
            #000 13%,
            #000 100%);

    /* Wrapper now controls the border */
    border: 0;
    border-radius: inherit;
}

/* Fallback uses exactly the same rounded shape */
.gvw-about-hero__visual--fallback {
    display: grid;
    place-items: center;

    border-radius: clamp(18px, 1.6vw, 28px);
    border: 1px solid var(--about-border);
    overflow: hidden;

    background:
        radial-gradient(circle at 70% 35%,
            rgba(var(--cold-rgb), 0.18),
            transparent 30%),
        linear-gradient(145deg,
            var(--surface-3),
            var(--surface-1));

    box-shadow: var(--about-shadow);
}

.gvw-about-hero-art {
    position: relative;
    width: min(72%, 360px);
    aspect-ratio: 1;
}

.gvw-about-hero-art span {
    position: absolute;
    display: grid;
    place-items: center;
    color: var(--gold);
}

.gvw-about-hero-art svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.gvw-about-hero-art__globe {
    inset: 12%;
    opacity: 0.20;
}

.gvw-about-hero-art__passport {
    width: 32%;
    height: 32%;
    left: 26%;
    bottom: 17%;
}

.gvw-about-hero-art__plane {
    width: 23%;
    height: 23%;
    right: 20%;
    top: 20%;
}

/* ───────────────── Story / Mission / Vision / Values ───────────────── */
.gvw-about-principles {
    padding-block: 0 clamp(48px, 5vw, 78px);
}

.gvw-about-principles__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--about-border);
    border-radius: clamp(18px, 2vw, 28px);
    background: var(--about-panel);
    box-shadow: var(--about-shadow);
    backdrop-filter: blur(16px);
}

.gvw-about-principles__panel--cards-only {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.gvw-about-story,
.gvw-about-principle-card {
    position: relative;
    min-width: 0;
    padding: clamp(22px, 2.2vw, 34px);
}

.gvw-about-principle-card {
    border-left: 1px solid var(--about-border);
}

.gvw-about-principle-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 12px;
}

.gvw-about-principle-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    border-radius: 99px;
    background: var(--gold);
}

.gvw-about-principle-heading h2 {
    color: var(--gold);
    font-size: clamp(14px, 0.95vw, 17px);
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-transform: uppercase;
}

.gvw-about-principle-heading__compact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.gvw-about-principle-heading__compact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.gvw-about-story__copy,
.gvw-about-principle-card__copy {
    margin-top: 16px;
}

.gvw-about-story__copy p,
.gvw-about-principle-card__copy p {
    color: var(--text-body);
    font-size: clamp(13px, 0.82vw, 15px);
    line-height: 1.65;
}

.gvw-about-story__copy p+p,
.gvw-about-principle-card__copy p+p {
    margin-top: 12px;
}

.gvw-about-story {
    min-height: 330px;
    overflow: hidden;
}

.gvw-about-story__decor {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 10px;
    width: calc(100% - 44px);
    height: 104px;
    object-fit: cover;
    object-position: left center;
    opacity: 0.22;
    mix-blend-mode: luminosity;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000);
    mask-image: linear-gradient(180deg, transparent, #000 30%, #000);
    pointer-events: none;
}

html[data-theme="light"] .gvw-about-story__decor {
    opacity: 0.18;
    mix-blend-mode: multiply;
}

.gvw-about-story__route {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 22px;
    height: 66px;
    border-bottom: 2px dashed var(--gold-a35);
    border-radius: 0 0 50% 50%;
    opacity: 0.74;
}

.gvw-about-story__route span {
    position: absolute;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: var(--gold);
}

.gvw-about-story__route svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.gvw-about-story__pin {
    left: 9%;
    bottom: -12px;
}

.gvw-about-story__plane {
    right: 7%;
    bottom: 5px;
    transform: rotate(-18deg);
}

.gvw-about-principle-card__icon {
    display: grid;
    place-items: center;
    width: clamp(60px, 5vw, 78px);
    height: clamp(60px, 5vw, 78px);
    margin: 22px auto 0;
    border: 1px solid var(--gold-a20);
    border-radius: 50%;
    background: var(--gold-a06);
    color: var(--gold);
    box-shadow: 0 9px 24px var(--gold-a06);
}

.gvw-about-principle-card__icon svg {
    width: 42%;
    height: 42%;
    fill: currentColor;
}

.gvw-about-values-list {
    display: grid;
    gap: 8px;
    margin-top: 15px;
    list-style: none;
}

.gvw-about-values-list li {
    position: relative;
    padding-left: 16px;
    color: var(--text-body);
    font-size: clamp(12.5px, 0.78vw, 14px);
    line-height: 1.45;
}

.gvw-about-values-list li::before {
    content: "";
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.gvw-about-values-list--story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ───────────────────────── Why choose ───────────────────────── */
.gvw-about-choice {
    padding-bottom: clamp(38px, 4.5vw, 66px);
}

.gvw-about-choice__head {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
    gap: 16px;
    align-items: center;
    width: min(100%, 670px);
    margin: 0 auto clamp(24px, 3vw, 38px);
    text-align: center;
}

.gvw-about-choice__head>span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-a50));
}

.gvw-about-choice__head>span:last-child {
    background: linear-gradient(90deg, var(--gold-a50), transparent);
}

.gvw-about-choice__head h2 {
    color: var(--text-strong);
    font-size: clamp(22px, 1.8vw, 31px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.18;
    text-transform: uppercase;
}

.gvw-about-choice__head h2 strong {
    color: var(--gold);
    font: inherit;
}

.gvw-about-choice__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(12px, 1.2vw, 20px);
}

.gvw-about-choice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 230px;
    padding: clamp(20px, 1.7vw, 28px) 16px;
    border: 1px solid var(--about-border);
    border-radius: var(--radius-lg);
    background: var(--about-card);
    box-shadow: var(--about-shadow-soft);
    text-align: center;
    transition:
        transform var(--duration-normal) var(--ease-standard),
        border-color var(--duration-normal) var(--ease-standard),
        background-color var(--duration-normal) var(--ease-standard);
}

.gvw-about-choice-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-a35);
    background: var(--about-card-hover);
}

.gvw-about-choice-card__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border: 1px solid var(--gold-a20);
    border-radius: 50%;
    background: var(--gold-a06);
    color: var(--gold);
}

.gvw-about-choice-card__icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.gvw-about-choice-card h3 {
    color: var(--text-strong);
    font-size: clamp(14px, 0.95vw, 17px);
    font-weight: 800;
    line-height: 1.25;
}

.gvw-about-choice-card p {
    margin-top: 10px;
    color: var(--text-dim);
    font-size: clamp(12px, 0.75vw, 13.5px);
    line-height: 1.55;
}

/* ───────────────────────── Statistics ───────────────────────── */
.gvw-about-statistics {
    padding-bottom: clamp(38px, 4.2vw, 64px);
}

.gvw-about-statistics__banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    height: clamp(150px, 10.5vw, 185px);
    overflow: hidden;
    border: 1px solid var(--gold-a20);
    border-radius: clamp(16px, 1.6vw, 24px);
    background:
        radial-gradient(circle at 90% 10%, var(--gold-a16), transparent 28%),
        linear-gradient(120deg, var(--about-stat-start), var(--about-stat-end));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.gvw-about-statistics__banner--with-image {
    grid-template-columns: minmax(0, 1fr) clamp(270px, 29%, 410px);
}

.gvw-about-statistics__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    min-height: 0;
    padding: 14px 10px;
}

.gvw-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    padding: 4px clamp(8px, 1vw, 16px);
    text-align: center;
}

.gvw-about-stat+.gvw-about-stat {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.gvw-about-stat strong {
    color: var(--gold-l);
    font-size: clamp(25px, 1.8vw, 36px);
    font-weight: 850;
    line-height: 1;
}

.gvw-about-stat__icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-top: 8px;
    color: var(--about-stat-text);
}

.gvw-about-stat__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.gvw-about-stat__label {
    margin-top: 5px;
    color: var(--about-stat-muted);
    font-size: clamp(10.5px, 0.64vw, 12px);
    font-weight: 600;
    line-height: 1.25;
}

.gvw-about-statistics__visual {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

.gvw-about-statistics__visual--image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, var(--about-stat-end), transparent 30%);
    pointer-events: none;
}

.gvw-about-statistics__image,
.gvw-about-statistics__visual--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.gvw-about-statistics__visual--fallback {
    display: grid;
    place-items: center;
}

.gvw-about-statistics-art {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold-l);
    opacity: 0.75;
}

.gvw-about-statistics-art span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.gvw-about-statistics-art svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ───────────────────────── Responsive ───────────────────────── */
@media (max-width: 1279px) {
    .gvw-about-hero__container {
        grid-template-columns: minmax(0, 0.96fr) minmax(400px, 1.04fr);
        gap: 26px;
    }

    .gvw-about-hero__visual {
        height: clamp(320px, 29vw, 390px);
    }

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

    .gvw-about-choice-card {
        min-height: 220px;
    }

    .gvw-about-statistics__banner--with-image {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 28%);
    }
}

@media (max-width: 1099px) {
    .gvw-about-hero__container {
        grid-template-columns: 1fr;
    }

    .gvw-about-hero__copy {
        max-width: 820px;
    }

    .gvw-about-hero__visual {
        width: 100%;
        height: clamp(330px, 48vw, 430px);
    }

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

    .gvw-about-story {
        grid-column: 1 / -1;
        min-height: 280px;
        border-bottom: 1px solid var(--about-border);
    }

    .gvw-about-principle-card:first-of-type {
        border-left: 0;
    }

    .gvw-about-statistics__banner {
        height: 160px;
    }

    .gvw-about-statistics__banner--with-image {
        grid-template-columns: minmax(0, 1fr) 240px;
    }
}

@media (max-width: 820px) {
    .gvw-about-hero {
        padding-top: 30px;
    }

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

    .gvw-about-hero-feature:nth-child(odd) {
        border-left: 0;
    }

    .gvw-about-hero-feature:nth-child(n + 3) {
        border-top: 1px solid var(--border-soft);
    }

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

    .gvw-about-story,
    .gvw-about-principle-card {
        border-left: 0;
        border-bottom: 1px solid var(--about-border);
    }

    .gvw-about-principle-card:last-child {
        border-bottom: 0;
    }

    .gvw-about-principle-card__icon {
        margin-inline: 0;
    }

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

    .gvw-about-statistics__banner,
    .gvw-about-statistics__banner--with-image {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gvw-about-statistics__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 210px;
        row-gap: 12px;
        padding-block: 16px;
    }

    .gvw-about-stat:nth-child(4) {
        border-left: 0;
    }

    .gvw-about-statistics__visual {
        height: 210px;
    }

    .gvw-about-statistics__visual--image::before {
        background: linear-gradient(180deg, var(--about-stat-end), transparent 28%);
    }
}

@media (max-width: 560px) {
    .gvw-about-hero__title {
        font-size: clamp(32px, 9vw, 42px);
    }

    .gvw-about-hero__lead,
    .gvw-about-hero__supporting {
        font-size: 14px;
    }

    .gvw-about-hero__visual {
        height: 280px;
    }

    .gvw-about-hero__visual::after {
        background: linear-gradient(0deg, var(--page-bg), transparent 18%);
    }

    .gvw-about-hero__image,
    .gvw-about-hero__visual--image img {
        -webkit-mask-image: none;
        mask-image: none;
        object-position: 70% center;
    }

    .gvw-about-values-list--story {
        grid-template-columns: 1fr;
    }

    .gvw-about-choice__head {
        grid-template-columns: 24px minmax(0, 1fr) 24px;
        gap: 10px;
    }

    .gvw-about-choice__head h2 {
        font-size: 21px;
    }

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

    .gvw-about-choice-card {
        min-height: 0;
    }

    .gvw-about-statistics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 270px;
        padding-inline: 8px;
    }

    .gvw-about-stat:nth-child(odd) {
        border-left: 0;
    }

    .gvw-about-stat:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, 0.22);
    }

    .gvw-about-stat:last-child {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-top: 14px;
    }

    .gvw-about-statistics__visual {
        height: 175px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gvw-about-choice-card,
    .gvw-about-hero-feature {
        transition: none;
    }
}