/* Clean Misun-style Graphic Design Hero */

.gd-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    min-height: 720px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 4%, rgba(0,216,140,.15), transparent 30%),
        radial-gradient(circle at 86% 20%, rgba(0,216,140,.10), transparent 28%),
        #0c1016;
}

.gd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 72px 72px;
}

.gd-hero-bg-text {
    position: absolute;
    right: -5vw;
    top: 5%;
    font-size: clamp(110px, 18vw, 260px);
    line-height: .8;
    font-weight: 900;
    letter-spacing: -10px;
    color: rgba(255,255,255,.035);
    pointer-events: none;
    user-select: none;
}

.gd-hero-container {
    position: relative;
    z-index: 2;
}

.gd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
    gap: 44px;
    align-items: center;
}

.gd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 9px 15px;
    border-radius: 999px;
    color: rgba(255,255,255,.84);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.12);
    font-size: 14px;
    font-weight: 700;
}

.gd-eyebrow i {
    color: #00d88c;
}

.gd-hero-content h1 {
    max-width: 780px;
    margin: 22px 0 0;
    color: #fff;
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    font-weight: 800;
}

.gd-hero-content p {
    max-width: 690px;
    margin-top: 20px;
    color: rgba(255,255,255,.66);
    font-size: 17px;
    line-height: 1.76;
}

.gd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.gd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 14px 21px;
    border-radius: 14px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: .24s ease;
}

.gd-btn:hover {
    transform: translateY(-2px);
}

.gd-btn-primary {
    color: #06120d;
    background: #00d88c;
}

.gd-btn-primary:hover {
    color: #06120d;
    background: #00ef9b;
}

.gd-btn-dark {
    color: #fff;
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.12);
}

.gd-btn-dark:hover {
    color: #fff;
    border-color: rgba(0,216,140,.34);
}

.gd-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.gd-hero-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255,255,255,.68);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.11);
    font-size: 13px;
    font-weight: 650;
}

/* Right hero visual */
.gd-hero-visual {
    position: relative;
    min-height: 610px;
}

.gd-green-circle {
    position: absolute;
    z-index: 1;
    width: 420px;
    height: 420px;
    left: 50%;
    top: 53%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.16), transparent 18%),
        linear-gradient(135deg, #00df91, #10a970);
    box-shadow:
        0 35px 95px rgba(0,0,0,.35),
        0 0 80px rgba(0,216,140,.16);
}

.gd-orbit {
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 53%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.gd-orbit-one {
    width: 560px;
    height: 560px;
    border: 1px solid rgba(0,216,140,.18);
    animation: gdRotate 55s linear infinite;
}

.gd-orbit-two {
    width: 660px;
    height: 660px;
    border: 1px dashed rgba(0,216,140,.22);
    opacity: .75;
    animation: gdRotateReverse 80s linear infinite;
}

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

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

.gd-person {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    width: 390px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.gd-person img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 30px 42px rgba(0,0,0,.30));
}

.gd-person-placeholder {
    width: 340px;
    height: 420px;
    border-radius: 190px 190px 34px 34px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 24px;
}

.gd-person-placeholder strong {
    font-size: 34px;
}

.gd-person-placeholder span {
    margin-top: 9px;
    color: rgba(255,255,255,.58);
    font-size: 14px;
}

/* Floating cards */
.gd-info-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 220px;
    padding: 15px 17px;
    border-radius: 19px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(0,216,140,.25);
    box-shadow: 0 22px 56px rgba(0,0,0,.23);
    animation: gdFloat 5s ease-in-out infinite;
}

.gd-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #009e68;
    background: rgba(0,216,140,.10);
    border: 1px solid rgba(0,216,140,.18);
    font-size: 25px;
}

.gd-info-card strong {
    display: block;
    color: #111827;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.5px;
}

.gd-info-card span {
    display: block;
    margin-top: 5px;
    color: #374151;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.gd-card-resource {
    left: 14px;
    top: 84px;
}

.gd-card-custom {
    left: -20px;
    top: 330px;
    animation-delay: .5s;
}

.gd-card-support {
    right: -6px;
    top: 198px;
    animation-delay: 1s;
}

.gd-card-project {
    right: 18px;
    bottom: 96px;
    animation-delay: 1.4s;
}

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

/* Small icon tiles */
.gd-icon-tile {
    position: absolute;
    z-index: 2;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    font-size: 30px;
    animation: gdSoftFloat 7s ease-in-out infinite;
}

.gd-tile-one {
    left: 36px;
    top: 0;
    color: #ff67c4;
    transform: rotate(-10deg);
}

.gd-tile-two {
    left: 30px;
    bottom: 20px;
    color: #62b5ff;
    animation-delay: .6s;
}

.gd-tile-three {
    right: 44px;
    bottom: 6px;
    color: #facc15;
    transform: rotate(8deg);
    animation-delay: 1.2s;
}

.gd-tile-four {
    right: 20px;
    top: 10px;
    color: #60ffa9;
    transform: rotate(10deg);
    animation-delay: 1.8s;
}

@keyframes gdSoftFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -12px; }
}

/* Remove old bottom visual box if old CSS/HTML remains */
.btfeel-main-caption,
.btfeel-floating-proof {
    display: none !important;
}

/* Responsive */
@media (max-width: 1100px) {
    .gd-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gd-hero-content {
        max-width: 850px;
    }

    .gd-hero-visual {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .gd-hero {
        min-height: auto;
        padding: 48px 0 40px;
    }

    .gd-hero-bg-text {
        display: none;
    }

    .gd-hero-grid {
        gap: 24px;
    }

    .gd-eyebrow {
        font-size: 12px;
        padding: 8px 12px;
    }

    .gd-hero-content h1 {
        font-size: 37px;
        line-height: 1.12;
        letter-spacing: -.9px;
    }

    .gd-hero-content p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .gd-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gd-hero-visual {
        min-height: 500px;
        transform: scale(.92);
        transform-origin: center top;
        margin-bottom: -34px;
    }

    .gd-green-circle {
        width: 320px;
        height: 320px;
        top: 50%;
    }

    .gd-orbit-one {
        width: 420px;
        height: 420px;
    }

    .gd-orbit-two {
        width: 500px;
        height: 500px;
        opacity: .45;
    }

    .gd-person {
        width: 285px;
        height: 390px;
        bottom: 42px;
    }

    .gd-info-card {
        min-width: 158px;
        max-width: 175px;
        padding: 10px 11px;
        gap: 8px;
        border-radius: 15px;
    }

    .gd-card-icon {
        width: 35px;
        height: 35px;
        border-radius: 11px;
        font-size: 18px;
    }

    .gd-info-card strong {
        font-size: 18px;
    }

    .gd-info-card span {
        font-size: 11px;
    }

    .gd-card-resource {
        left: -5px;
        top: 70px;
    }

    .gd-card-custom {
        left: -14px;
        top: 262px;
    }

    .gd-card-support {
        right: -14px;
        top: 170px;
    }

    .gd-card-project {
        right: -4px;
        bottom: 72px;
    }

    .gd-icon-tile {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 23px;
    }

    .gd-tile-one {
        left: 4px;
        top: 0;
    }

    .gd-tile-two {
        left: 6px;
        bottom: 42px;
    }

    .gd-tile-three {
        right: 8px;
        bottom: 20px;
    }

    .gd-tile-four {
        right: 6px;
        top: 8px;
    }
}

@media (max-width: 420px) {
    .gd-hero-content h1 {
        font-size: 33px;
    }

    .gd-hero-visual {
        transform: scale(.86);
        margin-left: -12px;
        margin-right: -12px;
    }
}
