/*
Theme Name: VizGlobal
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

/* =========================================================
   VIZ GLOBAL — HOMEPAGE COMPONENTS
   Append this file to:
   /wp-content/themes/viz-global-child/assets/css/viz-global.css
   ========================================================= */

/* Shared homepage utilities */
.vg-home-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
    gap: clamp(28px, 6vw, 88px);
    align-items: end;
    margin-bottom: clamp(34px, 5vw, 64px);
}

.vg-home-section-heading .vg-lead {
    margin-top: 0;
}

.vg-home-subtle-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vg-navy);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-decoration: none !important;
}

.vg-home-subtle-link::after {
    content: '→';
    transition: transform var(--vg-transition);
}

.vg-home-subtle-link:hover {
    color: var(--vg-gold-deep);
}

.vg-home-subtle-link:hover::after {
    transform: translateX(4px);
}

/* 01 — Hero */
.vg-home-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 14%, rgba(210, 171, 46, 0.13), transparent 26%),
        linear-gradient(135deg, #fbfaf6 0%, #f7f3e9 54%, #ffffff 100%);
}

.vg-home-hero::before,
.vg-home-hero::after {
    position: absolute;
    border: 1px solid rgba(16, 52, 102, 0.08);
    border-radius: 50%;
    content: '';
    pointer-events: none;
}

.vg-home-hero::before {
    top: -360px;
    right: -260px;
    width: 820px;
    height: 820px;
}

.vg-home-hero::after {
    right: -110px;
    bottom: -470px;
    width: 760px;
    height: 760px;
    border-color: rgba(210, 171, 46, 0.15);
}

.vg-home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: clamp(46px, 7vw, 105px);
    min-height: min(840px, calc(100vh - 84px));
    align-items: center;
    padding-block: clamp(70px, 8vw, 112px);
}

.vg-home-hero__content {
    max-width: 700px;
}

.vg-home-hero__title {
    max-width: 760px;
    font-size: clamp(3.2rem, 6.25vw, 6.65rem);
    line-height: 0.91;
}

.vg-home-hero__lead {
    max-width: 650px;
    font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.vg-home-hero__location {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    align-items: center;
    margin-top: 30px;
    padding-top: 23px;
    border-top: 1px solid rgba(16, 52, 102, 0.14);
    color: var(--vg-muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.035em;
}

.vg-home-hero__location span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vg-home-hero__location span::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: '';
    background: var(--vg-gold);
    box-shadow: 0 0 0 5px rgba(210, 171, 46, 0.12);
}

.vg-home-hero__media {
    position: relative;
    min-height: 620px;
    overflow: visible;
}

.vg-home-hero__image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(16, 52, 102, 0.1);
    border-radius: 220px 24px 24px 24px;
    background: var(--vg-navy-deep);
    box-shadow: 0 30px 85px rgba(7, 27, 58, 0.18);
}

.vg-home-hero__image-wrap::after {
    position: absolute;
    inset: 0;
    content: '';
    background:
        linear-gradient(180deg, rgba(7, 27, 58, 0.03), rgba(7, 27, 58, 0.36)),
        linear-gradient(90deg, rgba(7, 27, 58, 0.08), transparent 42%);
    pointer-events: none;
}

.vg-home-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-home-hero__badge {
    position: absolute;
    right: -22px;
    bottom: 42px;
    z-index: 2;
    width: min(320px, 78%);
    padding: 24px 26px;
    border: 1px solid rgba(210, 171, 46, 0.38);
    border-radius: 14px;
    color: var(--vg-white);
    background: rgba(7, 27, 58, 0.93);
    box-shadow: 0 20px 48px rgba(7, 27, 58, 0.28);
    backdrop-filter: blur(12px);
}

.vg-home-hero__badge-label {
    display: block;
    margin-bottom: 8px;
    color: var(--vg-gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vg-home-hero__badge strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 600;
    line-height: 1.1;
}

/* 02 — Trust strip */
.vg-home-trust {
    border-block: 1px solid var(--vg-line);
    background: var(--vg-white);
}

.vg-home-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vg-home-trust__item {
    display: flex;
    min-height: 98px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    border-right: 1px solid var(--vg-line);
    color: var(--vg-navy-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
}

.vg-home-trust__item:last-child {
    border-right: 0;
}

.vg-home-trust__item::before {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: '';
    background: var(--vg-gold);
}

/* 03 — Client pathways */
.vg-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vg-audience-card {
    position: relative;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: clamp(28px, 3vw, 42px);
    overflow: hidden;
    border: 1px solid var(--vg-line);
    border-radius: var(--vg-radius-lg);
    background: var(--vg-white);
    box-shadow: 0 10px 38px rgba(7, 27, 58, 0.055);
    transition: transform var(--vg-transition), border-color var(--vg-transition), box-shadow var(--vg-transition);
}

.vg-audience-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: '';
    background: linear-gradient(90deg, var(--vg-gold), transparent 72%);
}

.vg-audience-card::after {
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(16, 52, 102, 0.07);
    border-radius: 50%;
    content: '';
}

.vg-audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(210, 171, 46, 0.55);
    box-shadow: var(--vg-shadow-hover);
}

.vg-audience-card__number {
    position: relative;
    z-index: 1;
    margin-bottom: auto;
    color: var(--vg-gold-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.vg-audience-card__title {
    position: relative;
    z-index: 1;
    margin: 76px 0 14px;
    color: var(--vg-navy-deep);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 2.65vw, 2.75rem);
    font-weight: 600;
    line-height: 1;
}

.vg-audience-card__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--vg-muted);
    line-height: 1.72;
}

.vg-audience-card .vg-home-subtle-link {
    position: relative;
    z-index: 1;
    margin-top: 28px;
}

/* 04 — Global Plan B */
.vg-planb-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(48px, 8vw, 112px);
    align-items: center;
}

.vg-planb-media {
    position: relative;
}

.vg-planb-media::before {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 46%;
    height: 46%;
    border-top: 1px solid rgba(210, 171, 46, 0.62);
    border-right: 1px solid rgba(210, 171, 46, 0.62);
    border-radius: 0 var(--vg-radius-lg) 0 0;
    content: '';
}

.vg-planb-media__frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--vg-radius-lg);
    box-shadow: var(--vg-shadow);
}

.vg-planb-media__frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.vg-planb-media__frame::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 56%, rgba(7, 27, 58, 0.58));
}

.vg-planb-media__caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    color: var(--vg-white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.5;
    text-transform: uppercase;
}

.vg-planb-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
    margin-top: 34px;
}

.vg-planb-point {
    padding: 20px 0;
    border-top: 1px solid var(--vg-line);
}

.vg-planb-point strong {
    display: block;
    margin-bottom: 7px;
    color: var(--vg-navy-deep);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.15;
}

.vg-planb-point span {
    color: var(--vg-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 05 — Global programmes */
.vg-programmes {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(210, 171, 46, 0.16), transparent 25%),
        var(--vg-navy-deep);
}

.vg-programmes::before {
    position: absolute;
    top: -390px;
    left: -300px;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: '';
}

.vg-programme-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.vg-programme-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--vg-radius-lg);
    background: var(--vg-navy);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.vg-programme-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
}

.vg-programme-card:hover .vg-programme-card__image {
    transform: scale(1.035);
}

.vg-programme-card::after {
    position: absolute;
    inset: 0;
    content: '';
    background:
        linear-gradient(180deg, rgba(7, 27, 58, 0.08) 0%, rgba(7, 27, 58, 0.88) 76%, rgba(7, 27, 58, 0.98) 100%),
        linear-gradient(90deg, rgba(7, 27, 58, 0.34), transparent 55%);
}

.vg-programme-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: clamp(30px, 4vw, 48px);
}

.vg-programme-card__label {
    display: inline-flex;
    margin-bottom: 15px;
    color: var(--vg-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vg-programme-card__title {
    max-width: 520px;
    margin: 0;
    color: var(--vg-white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 3.4vw, 3.55rem);
    font-weight: 600;
    line-height: 0.98;
}

.vg-programme-card__text {
    max-width: 590px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.vg-programme-card .vg-home-subtle-link {
    margin-top: 25px;
    color: var(--vg-white);
}

.vg-programme-card .vg-home-subtle-link:hover {
    color: var(--vg-gold);
}

/* 06 — UK business immigration and complex matters */
.vg-business-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
    gap: clamp(44px, 8vw, 110px);
    align-items: start;
}

.vg-business-intro {
    position: sticky;
    top: 120px;
}

.vg-business-services {
    border-top: 1px solid var(--vg-line);
}

.vg-business-service {
    display: grid;
    grid-template-columns: 42px minmax(180px, 0.7fr) minmax(250px, 1fr) 24px;
    gap: 22px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--vg-line);
    color: inherit;
    text-decoration: none !important;
    transition: padding-left var(--vg-transition), background-color var(--vg-transition);
}

.vg-business-service:hover {
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(210, 171, 46, 0.08), transparent 70%);
}

.vg-business-service__number {
    color: var(--vg-gold-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.vg-business-service__title {
    color: var(--vg-navy-deep);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.08;
}

.vg-business-service__text {
    color: var(--vg-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.vg-business-service__arrow {
    color: var(--vg-navy);
    font-size: 1.1rem;
    transition: transform var(--vg-transition), color var(--vg-transition);
}

.vg-business-service:hover .vg-business-service__arrow {
    color: var(--vg-gold-deep);
    transform: translateX(4px);
}

.vg-complex-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: clamp(30px, 5vw, 75px);
    align-items: center;
    margin-top: clamp(55px, 7vw, 90px);
    padding: clamp(34px, 5vw, 62px);
    overflow: hidden;
    border: 1px solid rgba(210, 171, 46, 0.32);
    border-radius: var(--vg-radius-lg);
    color: var(--vg-white);
    background: var(--vg-navy-deep);
    box-shadow: var(--vg-shadow);
}

.vg-complex-panel::after {
    position: absolute;
    right: -115px;
    bottom: -155px;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(210, 171, 46, 0.18);
    border-radius: 50%;
    content: '';
}

.vg-complex-panel__content,
.vg-complex-panel__services {
    position: relative;
    z-index: 1;
}

.vg-complex-panel__title {
    max-width: 720px;
    margin: 0;
    color: var(--vg-white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.1rem, 3.8vw, 4rem);
    font-weight: 500;
    line-height: 1;
}

.vg-complex-panel__text {
    max-width: 690px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.vg-complex-panel__services {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vg-complex-panel__services li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
}

.vg-complex-panel__services li:last-child {
    border-bottom: 0;
}

/* 07 — Wealth and relocation coordination */
.vg-coordination-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
}

.vg-coordination-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--vg-line);
    border-left: 1px solid var(--vg-line);
    background: rgba(255, 255, 255, 0.5);
}

.vg-coordination-service {
    min-height: 142px;
    padding: 27px;
    border-right: 1px solid var(--vg-line);
    border-bottom: 1px solid var(--vg-line);
}

.vg-coordination-service__icon {
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(210, 171, 46, 0.55);
    border-radius: 50%;
    color: var(--vg-gold-deep);
    font-size: 0.72rem;
    font-weight: 800;
}

.vg-coordination-service strong {
    display: block;
    color: var(--vg-navy-deep);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.15;
}

.vg-coordination-disclaimer {
    margin-top: 24px;
    color: var(--vg-muted);
    font-size: 0.78rem;
    line-height: 1.65;
}

/* 08 — Process */
.vg-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: clamp(42px, 6vw, 68px);
}

.vg-process-grid::before {
    position: absolute;
    top: 29px;
    right: 10%;
    left: 10%;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(210, 171, 46, 0.6), transparent);
}

.vg-process-step {
    position: relative;
    z-index: 1;
    padding-right: 18px;
}

.vg-process-step__number {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border: 1px solid rgba(210, 171, 46, 0.65);
    border-radius: 50%;
    color: var(--vg-gold-deep);
    background: var(--vg-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 10px 24px rgba(7, 27, 58, 0.08);
}

.vg-process-step__title {
    margin: 0 0 10px;
    color: var(--vg-navy-deep);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.1;
}

.vg-process-step__text {
    margin: 0;
    color: var(--vg-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* 09 — Canary Wharf office */
.vg-office-card {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(210, 171, 46, 0.28);
    border-radius: var(--vg-radius-lg);
    background: var(--vg-navy-deep);
    box-shadow: var(--vg-shadow);
}

.vg-office-card__media {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.vg-office-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vg-office-card__media::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(90deg, transparent 55%, rgba(7, 27, 58, 0.48));
}

.vg-office-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(38px, 6vw, 72px);
}

.vg-office-card__title {
    margin: 0;
    color: var(--vg-white);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
}

.vg-office-card__text {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.vg-office-card__details {
    display: grid;
    gap: 8px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
}

/* 10 — Insights */
.vg-insight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vg-insight-card {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: clamp(27px, 3vw, 38px);
    border: 1px solid var(--vg-line);
    border-radius: var(--vg-radius);
    background: var(--vg-white);
    box-shadow: 0 9px 34px rgba(7, 27, 58, 0.05);
    transition: transform var(--vg-transition), border-color var(--vg-transition), box-shadow var(--vg-transition);
}

.vg-insight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(210, 171, 46, 0.5);
    box-shadow: var(--vg-shadow-hover);
}

.vg-insight-card__category {
    margin-bottom: 70px;
    color: var(--vg-gold-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vg-insight-card__title {
    margin: 0;
    color: var(--vg-navy-deep);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 2.4vw, 2.45rem);
    font-weight: 600;
    line-height: 1.04;
}

.vg-insight-card__text {
    margin: 16px 0 0;
    color: var(--vg-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.vg-insight-card .vg-home-subtle-link {
    margin-top: auto;
    padding-top: 28px;
}

/* 11 — Final CTA refinement */
.vg-home-final-cta .vg-cta {
    background:
        radial-gradient(circle at 88% 14%, rgba(210, 171, 46, 0.18), transparent 28%),
        var(--vg-navy-deep);
}

.vg-home-final-cta .vg-cta__inner {
    align-items: flex-end;
}

.vg-home-final-cta__copy {
    max-width: 840px;
}

/* Responsive */
@media (max-width: 1100px) {
    .vg-home-hero__grid,
    .vg-planb-grid,
    .vg-business-layout,
    .vg-coordination-grid,
    .vg-office-card {
        grid-template-columns: 1fr;
    }

    .vg-home-hero__grid {
        min-height: auto;
        padding-top: 82px;
    }

    .vg-home-hero__content {
        max-width: 820px;
    }

    .vg-home-hero__media {
        min-height: 620px;
    }

    .vg-home-hero__image-wrap {
        border-radius: 170px 24px 24px 24px;
    }

    .vg-business-intro {
        position: static;
    }

    .vg-office-card__media {
        min-height: 480px;
    }

    .vg-office-card__media::after {
        background: linear-gradient(180deg, transparent 55%, rgba(7, 27, 58, 0.42));
    }
}

@media (max-width: 900px) {
    .vg-home-section-heading,
    .vg-complex-panel {
        grid-template-columns: 1fr;
    }

    .vg-home-section-heading .vg-lead {
        max-width: 760px;
    }

    .vg-audience-grid,
    .vg-insight-grid {
        grid-template-columns: 1fr;
    }

    .vg-audience-card {
        min-height: 310px;
    }

    .vg-audience-card__title {
        margin-top: 54px;
    }

    .vg-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 30px;
    }

    .vg-process-grid::before {
        display: none;
    }

    .vg-programme-card {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .vg-home-hero__grid {
        gap: 42px;
        padding-block: 65px;
    }

    .vg-home-hero__title {
        font-size: clamp(3.05rem, 16vw, 4.7rem);
        line-height: 0.93;
    }

    .vg-home-hero__media {
        min-height: 470px;
    }

    .vg-home-hero__image-wrap {
        border-radius: 110px 18px 18px 18px;
    }

    .vg-home-hero__badge {
        right: 14px;
        bottom: 18px;
        left: 14px;
        width: auto;
        padding: 20px;
    }

    .vg-home-trust__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vg-home-trust__item {
        min-height: 82px;
        padding: 16px 12px;
        border-bottom: 1px solid var(--vg-line);
        font-size: 0.68rem;
    }

    .vg-home-trust__item:nth-child(2n) {
        border-right: 0;
    }

    .vg-home-trust__item:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .vg-planb-points,
    .vg-programme-grid,
    .vg-coordination-services,
    .vg-process-grid {
        grid-template-columns: 1fr;
    }

    .vg-planb-media::before {
        top: -13px;
        right: -8px;
    }

    .vg-programme-card {
        min-height: 430px;
    }

    .vg-business-service {
        grid-template-columns: 36px minmax(0, 1fr) 20px;
        gap: 13px;
        align-items: start;
    }

    .vg-business-service__text {
        grid-column: 2 / 4;
        margin-top: -7px;
    }

    .vg-complex-panel {
        padding: 32px 24px;
    }

    .vg-coordination-service {
        min-height: 120px;
    }

    .vg-process-step {
        padding: 0 0 28px 0;
        border-bottom: 1px solid var(--vg-line);
    }

    .vg-process-step:last-child {
        border-bottom: 0;
    }

    .vg-office-card,
    .vg-office-card__media {
        min-height: auto;
    }

    .vg-office-card__media {
        height: 390px;
    }

    .vg-office-card__content {
        padding: 34px 24px 40px;
    }

    .vg-home-final-cta .vg-cta__inner {
        align-items: flex-start;
    }
}