/* HOME HERO */
.home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 72% 42%, rgba(40, 92, 150, 0.28) 0%, rgba(40, 92, 150, 0) 30%),
        radial-gradient(circle at 18% 88%, rgba(24, 66, 120, 0.34) 0%, rgba(24, 66, 120, 0) 34%),
        linear-gradient(180deg, var(--color1) 0%, var(--color2) 52%, var(--color1) 100%);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.035) 48%, transparent 76%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%);
    opacity: 0.72;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: -90px;
    height: 170px;
    z-index: -1;
    background: var(--color11);
    transform: rotate(-2.5deg);
    transform-origin: left top;
}

.home-hero-content {
    position: relative;
    z-index: 5;
    max-width: 820px;
    padding-top: 86px;
    animation: heroFadeUp 0.9s ease both;
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 26px;
    color: var(--color7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: none;
    animation: heroFadeUp 0.8s ease 0.1s both;
}

.home-hero-title {
    margin: 0;
    color: var(--color5);
    font-size: clamp(58px, 6.1vw, 96px);
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: -0.075em;
    text-wrap: balance;
    animation: heroFadeUp 0.9s ease 0.18s both;
}

.home-hero-description {
    max-width: 610px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: -0.02em;
    animation: heroFadeUp 0.9s ease 0.28s both;
}

.home-hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    animation: heroFadeUp 0.9s ease 0.38s both;
}

/* ORBIT LINES */
.home-hero-orbit {
    position: absolute;
    left: -12%;
    right: -10%;
    z-index: -2;
    height: 240px;
    border-radius: 50%;
    pointer-events: none;
    transform: rotate(-7deg);
}

.home-hero-orbit-1 {
    top: 26%;
    border-top: 3px solid rgba(94, 216, 242, 0.48);
    animation: orbitMoveOne 7s ease-in-out infinite alternate;
}

.home-hero-orbit-2 {
    top: 42%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    animation: orbitMoveTwo 8s ease-in-out infinite alternate;
}

.home-hero-orbit-3 {
    top: 55%;
    border-top: 1px solid rgba(94, 216, 242, 0.22);
    animation: orbitMoveThree 9s ease-in-out infinite alternate;
}

.home-hero-orbit-1::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 72%;
    width: 20px;
    height: 14px;
    border-radius: 999px;
    background: rgba(94, 216, 242, 0.28);
    box-shadow:
        0 0 0 5px rgba(94, 216, 242, 0.08),
        0 0 24px rgba(94, 216, 242, 0.6);
}

.home-hero-orbit-1::before {
    content: "";
    position: absolute;
    top: -4px;
    left: calc(72% + 6px);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color7);
}

/* GLOW / DIGITAL BARS */
.home-hero-glow {
    position: absolute;
    z-index: -3;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(94, 216, 242, 0.13), transparent);
    filter: blur(8px);
    opacity: 0.8;
    animation: glowFloat 5s ease-in-out infinite alternate;
}

.home-hero-glow-1 {
    width: 46%;
    top: 18%;
    left: 34%;
}

.home-hero-glow-2 {
    width: 38%;
    top: 44%;
    right: 3%;
    animation-delay: 1.2s;
}

.home-hero-bottom-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 56px;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
}

/* ANIMATIONS */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes orbitMoveOne {
    from {
        transform: rotate(-7deg) translateY(0);
    }

    to {
        transform: rotate(-6deg) translateY(-14px);
    }
}

@keyframes orbitMoveTwo {
    from {
        transform: rotate(-7deg) translateX(0);
    }

    to {
        transform: rotate(-8deg) translateX(28px);
    }
}

@keyframes orbitMoveThree {
    from {
        transform: rotate(-7deg) translateY(0);
    }

    to {
        transform: rotate(-5deg) translateY(18px);
    }
}

@keyframes glowFloat {
    from {
        opacity: 0.38;
        transform: translateX(-24px);
    }

    to {
        opacity: 0.86;
        transform: translateX(24px);
    }
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .home-hero-title {
        font-size: clamp(54px, 7vw, 82px);
    }

    .home-hero-description {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .home-hero-content {
        max-width: 720px;
        padding-top: 110px;
    }

    .home-hero-title {
        font-size: clamp(48px, 9vw, 76px);
    }

    .home-hero-description {
        max-width: 560px;
    }

    .home-hero-orbit {
        left: -45%;
        right: -45%;
    }

    .home-hero-orbit-1 {
        top: 31%;
    }

    .home-hero-orbit-2 {
        top: 48%;
    }

    .home-hero-orbit-3 {
        top: 61%;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        min-height: 720px;
    }

    .home-hero-content {
        padding-top: 126px;
    }

    .home-hero-eyebrow {
        margin-bottom: 20px;
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .home-hero-title {
        font-size: clamp(42px, 12vw, 62px);
        line-height: 1;
        letter-spacing: -0.06em;
    }

    .home-hero-description {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.6;
    }

    .home-hero-buttons {
        align-items: stretch;
        flex-direction: column;
        margin-top: 28px;
    }

    .home-hero-buttons .av-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        min-height: 690px;
    }

    .home-hero-content {
        padding-top: 118px;
    }

    .home-hero-title {
        font-size: clamp(39px, 13vw, 54px);
    }

    .home-hero-description {
        font-size: 15px;
    }

    .home-hero::after {
        bottom: -105px;
        height: 150px;
    }

    .home-hero-orbit {
        left: -95%;
        right: -95%;
        height: 190px;
    }

    .home-hero-glow-1,
    .home-hero-glow-2 {
        width: 80%;
    }
}

/* ABOUT */
.home-about {
    position: relative;
    overflow: hidden;
    padding: 120px 0 130px;
    background:
        radial-gradient(circle at 70% 22%, rgba(42, 90, 148, 0.22) 0%, rgba(42, 90, 148, 0) 30%),
        radial-gradient(circle at 18% 78%, rgba(30, 74, 135, 0.24) 0%, rgba(30, 74, 135, 0) 34%),
        linear-gradient(180deg, var(--color2) 0%, #1b3154 48%, var(--color2) 100%);
    isolation: isolate;
}

.home-about::before {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    top: 51%;
    height: 260px;
    border-top: 1px solid rgba(94, 216, 242, 0.16);
    border-radius: 50%;
    transform: rotate(-8deg);
    z-index: -1;
    animation: aboutOrbitFloat 8s ease-in-out infinite alternate;
}

.home-about-line {
    width: 100%;
    height: 52px;
    margin-bottom: 42px;
    border-top: 1px solid rgba(94, 216, 242, 0.34);
    border-bottom: 1px solid rgba(94, 216, 242, 0.08);
    border-radius: 50%;
    transform: rotate(-2deg);
    animation: aboutLineLoad 1s ease both;
}

.home-section-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--color7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.home-about-head {
    margin-bottom: 62px;
}

.home-about-title,
.home-services-title {
    margin: 0;
    color: var(--color5);
    font-weight: 900;
    letter-spacing: -0.065em;
}

.home-about-title {
    max-width: 620px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    animation: heroFadeUp 0.8s ease 0.08s both;
}

.home-about-text {
    margin: 44px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: -0.02em;
    animation: heroFadeUp 0.8s ease 0.16s both;
}

.home-about-feature-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 120px;
}

.home-about-feature-card {
    position: relative;
    min-height: 136px;
    padding: 28px 28px 24px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(29, 57, 96, 0.9), rgba(25, 48, 82, 0.74));
    border-top: 2px solid rgba(94, 216, 242, 0.5);
    transition: all var(--transition-normal);
    animation: aboutCardIn 0.75s ease both;
}

.home-about-feature-card:nth-child(2) {
    animation-delay: 0.12s;
}

.home-about-feature-card:nth-child(3) {
    animation-delay: 0.24s;
}

.home-about-feature-card:hover {
    transform: translateY(-7px);
    background: linear-gradient(180deg, rgba(36, 75, 124, 0.92), rgba(28, 54, 91, 0.82));
}

.home-card-line {
    position: absolute;
    top: 20px;
    right: -25px;
    width: 220px;
    height: 56px;
    border-top: 1px solid rgba(94, 216, 242, 0.28);
    border-radius: 50%;
    transform: rotate(-11deg);
    opacity: 0.85;
}

.home-about-card-orbit {
    position: absolute;
    top: 38px;
    right: -45px;
    width: 240px;
    height: 70px;
    border-top: 1px solid rgba(94, 216, 242, 0.14);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.home-about-icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color11);
    font-size: 17px;
}

.home-about-feature-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: var(--color5);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-about-feature-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

/* SERVICES */
.home-services {
    position: relative;
}

.home-services-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 36px;
}

.home-services-title {
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1.08;
    animation: heroFadeUp 0.8s ease both;
}

.home-services-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color7);
    font-size: 14px;
    font-weight: 700;
    transition: all var(--transition-normal);
}

.home-services-link i {
    transform: rotate(45deg);
    transition: transform var(--transition-normal);
}

.home-services-link:hover {
    color: var(--color5);
}

.home-services-link:hover i {
    transform: rotate(45deg) translate(4px, -4px);
}

.home-service-card {
    position: relative;
    display: block;
    min-height: 230px;
    padding: 34px 34px 30px;
    overflow: hidden;
    color: var(--color5);
    background:
        radial-gradient(circle at 85% 15%, rgba(94, 216, 242, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(42, 72, 119, 0.96), rgba(35, 65, 111, 0.96));
    border: 1px solid rgba(94, 216, 242, 0.12);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all var(--transition-normal);
    animation: serviceCardIn 0.75s ease both;
}

.home-services-grid .col-lg-6:nth-child(2) .home-service-card {
    animation-delay: 0.1s;
}

.home-services-grid .col-lg-6:nth-child(3) .home-service-card {
    animation-delay: 0.2s;
}

.home-services-grid .col-lg-6:nth-child(4) .home-service-card {
    animation-delay: 0.3s;
}

.home-service-card::before {
    content: "";
    position: absolute;
    left: 35%;
    right: -20%;
    bottom: -20px;
    height: 85px;
    border-top: 1px solid rgba(94, 216, 242, 0.16);
    border-radius: 50%;
    transform: rotate(-7deg);
    transition: all var(--transition-normal);
}

.home-service-card:hover {
    color: var(--color5);
    transform: translateY(-8px);
    border-color: rgba(94, 216, 242, 0.32);
    background:
        radial-gradient(circle at 85% 15%, rgba(94, 216, 242, 0.13), transparent 32%),
        linear-gradient(180deg, rgba(48, 82, 132, 0.98), rgba(38, 70, 118, 0.98));
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.home-service-card:hover::before {
    transform: rotate(-5deg) translateY(-12px);
}

.home-service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color11);
    background: rgba(94, 216, 242, 0.13);
    border-radius: 10px;
    font-size: 18px;
    transition: all var(--transition-normal);
}

.home-service-card:hover .home-service-icon {
    color: var(--color5);
    background: var(--color4);
    transform: rotate(-4deg) scale(1.06);
}

.home-service-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.home-service-card p {
    max-width: 620px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

.home-service-card span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--color7);
    font-size: 13px;
    font-weight: 800;
}

.home-service-card span i {
    transform: rotate(45deg);
    font-size: 12px;
    transition: transform var(--transition-normal);
}

.home-service-card:hover span i {
    transform: rotate(45deg) translate(3px, -3px);
}

/* ABOUT ANIMATION */
@keyframes aboutLineLoad {
    from {
        opacity: 0;
        transform: rotate(-2deg) translateY(20px) scaleX(0.75);
    }

    to {
        opacity: 1;
        transform: rotate(-2deg) translateY(0) scaleX(1);
    }
}

@keyframes aboutCardIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes serviceCardIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes aboutOrbitFloat {
    from {
        transform: rotate(-8deg) translateX(-18px);
    }

    to {
        transform: rotate(-6deg) translateX(28px);
    }
}

/* RESPONSIVE ABOUT */
@media (max-width: 1199.98px) {
    .home-about {
        padding: 105px 0 115px;
    }

    .home-about-feature-card {
        padding: 26px 22px 22px;
    }

    .home-service-card {
        min-height: 245px;
    }
}

@media (max-width: 991.98px) {
    .home-about {
        padding: 90px 0 100px;
    }

    .home-about-line {
        margin-bottom: 34px;
    }

    .home-about-head {
        margin-bottom: 44px;
    }

    .home-about-text {
        margin-top: 24px;
        font-size: 16px;
    }

    .home-about-feature-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 88px;
    }

    .home-about-feature-card {
        min-height: auto;
        border-radius: 10px;
    }

    .home-services-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .home-service-card {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .home-about {
        padding: 78px 0 84px;
    }

    .home-section-eyebrow {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    .home-about-title {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -0.055em;
    }

    .home-services-title {
        font-size: clamp(31px, 9vw, 42px);
        letter-spacing: -0.055em;
    }

    .home-about-feature-row {
        margin-bottom: 72px;
    }

    .home-service-card {
        padding: 28px 24px 26px;
    }
}

@media (max-width: 575.98px) {
    .home-about {
        padding: 68px 0 74px;
    }

    .home-about-line {
        height: 34px;
    }

    .home-about-title,
    .home-services-title {
        letter-spacing: -0.045em;
    }

    .home-about-text {
        font-size: 15px;
    }

    .home-about-feature-card {
        padding: 24px 20px 22px;
    }

    .home-service-card h3 {
        font-size: 18px;
    }

    .home-services-link {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* GLOBAL PRESENCE + TALK TO US */
.home-global-talk {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 20%, rgba(33, 78, 134, 0.2) 0%, rgba(33, 78, 134, 0) 32%),
        linear-gradient(180deg, var(--color1) 0%, #1d3152 48%, #1c2f4f 100%);
    isolation: isolate;
}

.home-global {
    position: relative;
    overflow: hidden;
    padding: 118px 0 104px;
    background:
        radial-gradient(circle at 50% 25%, rgba(28, 64, 116, 0.24) 0%, rgba(28, 64, 116, 0) 34%),
        linear-gradient(180deg, #091731 0%, #0a1832 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-global-map {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(94, 216, 242, 0.12) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    mask-image:
        radial-gradient(circle at 25% 30%, #000 0 11%, transparent 19%),
        radial-gradient(circle at 52% 40%, #000 0 13%, transparent 22%),
        radial-gradient(circle at 75% 42%, #000 0 14%, transparent 23%),
        radial-gradient(circle at 66% 70%, #000 0 10%, transparent 18%);
    -webkit-mask-image:
        radial-gradient(circle at 25% 30%, #000 0 11%, transparent 19%),
        radial-gradient(circle at 52% 40%, #000 0 13%, transparent 22%),
        radial-gradient(circle at 75% 42%, #000 0 14%, transparent 23%),
        radial-gradient(circle at 66% 70%, #000 0 10%, transparent 18%);
    animation: mapDrift 10s ease-in-out infinite alternate;
}

.map-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background: var(--color7);
    box-shadow:
        0 0 0 8px rgba(94, 216, 242, 0.08),
        0 0 28px rgba(94, 216, 242, 0.62);
    animation: mapPulse 2.8s ease-in-out infinite;
}

.map-dot-1 {
    top: 9%;
    left: 24%;
}

.map-dot-2 {
    top: 39%;
    left: 52%;
    animation-delay: 0.5s;
}

.map-dot-3 {
    top: 8%;
    right: 30%;
    animation-delay: 1s;
}

.map-dot-4 {
    bottom: 23%;
    right: 25%;
    animation-delay: 1.4s;
}

.home-global .container {
    position: relative;
    z-index: 2;
}

.home-global-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
}

.home-global-item {
    position: relative;
    padding: 18px 36px 18px 34px;
    min-height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(94, 216, 242, 0.32);
    animation: globalStatIn 0.8s ease both;
}

.home-global-item:nth-child(2) {
    animation-delay: 0.1s;
}

.home-global-item:nth-child(3) {
    animation-delay: 0.2s;
}

.home-global-item:nth-child(4) {
    animation-delay: 0.3s;
}

.home-global-item h3 {
    margin: 0 0 14px;
    color: var(--color5);
    font-size: clamp(54px, 5vw, 76px);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.home-global-item h3 span {
    color: var(--color7);
}

.home-global-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

/* TALK */
.home-talk {
    position: relative;
    padding: 128px 0 132px;
    background:
        radial-gradient(circle at 70% 40%, rgba(47, 88, 145, 0.18) 0%, rgba(47, 88, 145, 0) 34%),
        linear-gradient(180deg, #1d3152 0%, #1b2e4e 100%);
}

.home-talk-content {
    animation: heroFadeUp 0.85s ease both;
}

.home-talk-content h2 {
    max-width: 600px;
    margin: 0;
    color: var(--color5);
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.065em;
}

.home-talk-content p {
    max-width: 540px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.home-talk-info {
    display: grid;
    gap: 14px;
}

.home-talk-info a,
.home-talk-info div {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    transition: all var(--transition-normal);
}

.home-talk-info a:hover {
    color: var(--color5);
    transform: translateX(4px);
}

.home-talk-info span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color11);
    background: rgba(94, 216, 242, 0.18);
    border-radius: 8px;
    font-size: 16px;
    transition: all var(--transition-normal);
}

.home-talk-info a:hover span {
    color: var(--color5);
    background: var(--color4);
}

/* FORM */
.home-talk-form {
    position: relative;
    padding: 36px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(94, 216, 242, 0.07) 0%, transparent 30%),
        linear-gradient(180deg, rgba(44, 76, 126, 0.94), rgba(42, 73, 121, 0.94));
    border: 1px solid rgba(94, 216, 242, 0.12);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 24px 70px rgba(0, 0, 0, 0.12);
    animation: talkFormIn 0.9s ease 0.16s both;
}

.home-talk-form::before {
    content: "";
    position: absolute;
    top: -45px;
    right: -55px;
    width: 220px;
    height: 120px;
    border-top: 1px solid rgba(94, 216, 242, 0.16);
    border-radius: 50%;
    transform: rotate(-12deg);
    pointer-events: none;
}

.home-talk-form label {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.home-talk-form .form-control,
.home-talk-form .form-select {
    min-height: 48px;
    color: var(--color5);
    background-color: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 7px;
    font-size: 14px;
    box-shadow: none;
    transition: all var(--transition-normal);
}

.home-talk-form textarea.form-control {
    min-height: 108px;
    resize: none;
}

.home-talk-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.home-talk-form .form-control:focus,
.home-talk-form .form-select:focus {
    color: var(--color5);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(94, 216, 242, 0.45);
    box-shadow: 0 0 0 4px rgba(94, 216, 242, 0.08);
}

.home-talk-form .form-select {
    background-image: none;
}

.home-talk-form .form-select option {
    color: #111827;
}

.home-talk-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 22px;
}

.home-talk-form-bottom small {
    color: rgba(255, 255, 255, 0.44);
    font-size: 13px;
}

/* ANIMATION */
@keyframes globalStatIn {
    from {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes talkFormIn {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mapPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.95;
    }

    50% {
        transform: scale(1.18);
        opacity: 0.55;
    }
}

@keyframes mapDrift {
    from {
        transform: translate3d(-16px, -10px, 0);
    }

    to {
        transform: translate3d(18px, 12px, 0);
    }
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .home-global {
        padding: 104px 0 92px;
    }

    .home-talk {
        padding: 110px 0 116px;
    }

    .home-global-item {
        padding-left: 26px;
        padding-right: 24px;
    }

    .home-global-item h3 {
        font-size: clamp(48px, 5vw, 66px);
    }
}

@media (max-width: 991.98px) {
    .home-global {
        padding: 86px 0 76px;
    }

    .home-global-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .home-global-item {
        min-height: 120px;
    }

    .home-talk {
        padding: 88px 0 96px;
    }

    .home-talk-content p {
        max-width: 680px;
        font-size: 16px;
    }

    .home-talk-form {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .home-global {
        padding: 74px 0 70px;
    }

    .home-global-stats {
        margin-top: 22px;
    }

    .home-global-item h3 {
        font-size: clamp(44px, 12vw, 58px);
    }

    .home-global-item p {
        font-size: 12px;
        letter-spacing: 0.16em;
    }

    .home-talk-content h2 {
        font-size: clamp(36px, 10vw, 48px);
        letter-spacing: -0.055em;
    }

    .home-talk-content p {
        margin-top: 22px;
    }

    .home-talk-form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .home-talk-form-bottom .av-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .home-global {
        padding: 66px 0 62px;
    }

    .home-global-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-global-item {
        min-height: auto;
        padding: 22px 0 22px 22px;
    }

    .home-global-item h3 {
        margin-bottom: 10px;
    }

    .home-talk {
        padding: 72px 0 78px;
    }

    .home-talk-info a,
    .home-talk-info div {
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.5;
    }

    .home-talk-form {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .home-talk-form .form-control,
    .home-talk-form .form-select {
        min-height: 46px;
    }
}