/* =============================================
   GROOEMBER UI OVERRIDES
   Section-by-section overrides on top of the
   theme's bundled stylesheets. Loaded after
   style.css so cascade alone wins where possible
   and !important is reserved for cases where the
   theme uses utility-strength selectors.
============================================= */


/* ---------- 1. Theme typography polish ---------- */

.sec-title {
    letter-spacing: -0.02em;
}
.sub-title {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}


/* ---------- 2. Header ---------- */

.groo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.groo-header.scrolled {
    padding: 8px 0;
}
.groo-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.groo-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 10px 12px 10px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.groo-header.scrolled .groo-header-bar {
    background: rgba(6, 5, 11, 0.85);
    border-color: rgba(123, 93, 255, 0.15);
    box-shadow: 0 8px 40px rgba(123, 93, 255, 0.1), 0 2px 20px rgba(0, 0, 0, 0.4);
}
.groo-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.groo-logo img {
    height: 36px;
    width: auto;
}
.groo-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
    font-family: 'Pretendard', sans-serif;
}
.groo-nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.groo-nav li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.25s ease;
    font-family: 'Pretendard', sans-serif;
    position: relative;
}
.groo-nav li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: #D4FF12;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.groo-nav li a:hover {
    color: #fff;
}
.groo-nav li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.groo-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.groo-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #D4FF12;
    color: #06050B;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Pretendard', sans-serif;
    letter-spacing: 0.2px;
}
.groo-btn-cta:hover {
    background: #e8ff66;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 255, 18, 0.3);
}
.groo-btn-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
.groo-btn-cta:hover svg {
    transform: translateX(3px);
}
.groo-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.groo-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}
@media (max-width: 991px) {
    .groo-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 16px;
        flex-direction: column;
        gap: 0;
    }
    .groo-nav.active {
        display: flex;
    }
    .groo-nav li a {
        padding: 14px 16px;
        border-radius: 12px;
    }
    .groo-nav li a:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    .groo-nav li a::after {
        display: none;
    }
    .groo-mobile-toggle {
        display: block;
    }
    .groo-header-bar {
        padding: 8px 8px 8px 20px;
    }
    .groo-btn-cta {
        padding: 10px 20px;
        font-size: 13px;
    }
}
@media (max-width: 575px) {
    /* Show GROOEMBER wordmark next to the icon — shrunken so the row stays
       balanced with the CTA + hamburger toggle on narrow viewports. */
    .groo-logo-text {
        display: inline-block;
        font-size: 13px;
        letter-spacing: 1.5px;
    }
    .groo-logo {
        gap: 8px;
    }
    .groo-logo img {
        height: 26px;
    }
    .groo-header-bar {
        padding: 8px 8px 8px 14px;
        gap: 6px;
    }
    .groo-btn-cta {
        padding: 8px 14px;
        font-size: 12px;
        gap: 5px;
    }
    .groo-btn-cta svg {
        width: 11px;
        height: 11px;
    }
}


/* ---------- 3. Hero ---------- */

.th-hero-wrapper.hero-1 {
    background: #0A0A10;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.th-hero-wrapper.hero-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(123, 93, 255, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(184, 255, 79, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.th-hero-wrapper.hero-1 > * {
    position: relative;
    z-index: 1;
}
.hero-style1 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.hero-style1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(10, 10, 16, 0.88) 0%,
        rgba(10, 10, 16, 0.65) 40%,
        rgba(123, 93, 255, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.hero-style1 > * {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
    color: #fff !important;
}
.hero-title div,
.hero-title span {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}
.hero-text {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 520px;
}
.hero-style1 .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 93, 255, 0.15);
    border: 1px solid rgba(123, 93, 255, 0.25);
    color: #c4b5ff;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    backdrop-filter: blur(8px);
}
.hero-style1 .sub-title::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--groo-accent);
    animation: heroPulse 2s ease-in-out infinite;
}

/* ---------- Hero · Repix launch banner ---------- */
.hero-launch-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 12px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(184, 255, 79, 0.16), rgba(184, 255, 79, 0.04));
    border: 1px solid rgba(184, 255, 79, 0.4);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    max-width: 100%;
}
.hero-launch-banner:hover,
.hero-launch-banner:focus-visible {
    transform: translateY(-2px);
    border-color: var(--groo-accent);
    box-shadow: 0 10px 28px rgba(184, 255, 79, 0.22);
    color: #fff;
}
.hero-launch-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--groo-accent);
    box-shadow: 0 0 0 0 rgba(184, 255, 79, 0.7);
    animation: heroPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-launch-tag {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #06050b;
    background: var(--groo-accent);
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}
.hero-launch-text {
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-launch-text strong {
    color: var(--groo-accent);
    font-weight: 800;
}
.hero-launch-arrow {
    display: inline-flex;
    align-items: center;
    color: rgba(184, 255, 79, 0.85);
    flex-shrink: 0;
}
.hero-launch-arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
.hero-launch-banner:hover .hero-launch-arrow {
    color: var(--groo-accent);
}
.hero-launch-banner:hover .hero-launch-arrow svg {
    transform: translate(2px, -2px);
}

/* ---------- Hero · CTA row ---------- */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.hero-cta-primary.th-btn {
    background: var(--groo-accent) !important;
    color: #06050b !important;
    box-shadow: 0 10px 28px rgba(184, 255, 79, 0.25);
}
.hero-cta-primary.th-btn:hover {
    background: #d4ff80 !important;
    color: #06050b !important;
    box-shadow: 0 14px 36px rgba(184, 255, 79, 0.4);
}
.hero-cta-primary.th-btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-cta-primary.th-btn .icon svg {
    width: 14px;
    height: 14px;
}
.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hero-cta-ghost svg {
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
}
.hero-cta-ghost:hover {
    color: #fff;
    gap: 10px;
    border-color: rgba(255, 255, 255, 0.55);
}
.hero-cta-ghost:hover svg {
    transform: translateX(2px);
}

/* Body link styling for Repix mention inside hero text */
.hero-text-link {
    color: inherit !important;
    text-decoration: none !important;
    border-bottom: 1px dashed rgba(184, 255, 79, 0.5);
    transition: border-color 0.3s ease, color 0.3s ease;
}
.hero-text-link strong {
    color: var(--groo-accent);
}
.hero-text-link:hover {
    border-color: var(--groo-accent);
    color: #fff !important;
}

@media (max-width: 575px) {
    .hero-launch-banner {
        font-size: 11.5px;
        padding: 7px 12px 7px 10px;
        gap: 8px;
        margin-bottom: 16px;
    }
    .hero-launch-tag {
        font-size: 9.5px;
        padding: 2px 6px;
    }
    .hero-launch-arrow svg { width: 12px; height: 12px; }
    .hero-cta-row {
        gap: 12px;
    }
    .hero-cta-ghost {
        font-size: 13px;
    }
}
@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-video {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111;
}
.hero-video video {
    border-radius: 24px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Equal-height hero columns — same explicit height on both boxes at every
   viewport. Video uses object-fit:cover (above) to fill without distortion. */
.th-hero-wrapper.hero-1 .hero-style1,
.th-hero-wrapper.hero-1 .hero-video {
    height: clamp(440px, 56vw, 620px);
}
@media (max-width: 1199px) {
    /* Below xl the hero columns stack and the markup's `p-0` Bootstrap utility
       leaves them flush to the viewport edge. Re-add a horizontal gutter that
       matches what other sections (.container) get. !important required to
       beat Bootstrap's `.p-0` utility. */
    .th-hero-wrapper.hero-1 .container-fluid {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
@media (max-width: 575px) {
    /* Match the gutter that .container uses elsewhere on mobile (~12px) so
       the hero cards line up with About / Services cards below. */
    .th-hero-wrapper.hero-1 .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .th-hero-wrapper.hero-1 .hero-style1 {
        height: auto;
        min-height: 0;
    }
    .th-hero-wrapper.hero-1 .hero-video {
        height: clamp(280px, 70vw, 420px);
    }
}
@media (min-width: 1200px) {
    .th-hero-wrapper.hero-1 .row {
        align-items: stretch;
    }
    .th-hero-wrapper.hero-1 .row > [class*="col-xl-"] {
        display: flex;
    }
    .th-hero-wrapper.hero-1 .hero-style1,
    .th-hero-wrapper.hero-1 .hero-video {
        width: 100%;
    }
}
.scroll-down .discount-tag .discount-anime {
    color: rgba(255, 255, 255, 0.4) !important;
}


/* ---------- 4. About (legacy theme classes) ---------- */

.about-area .img-box1 .img1 img {
    border-radius: var(--groo-radius);
}
.about-checklist ul li {
    position: relative;
    padding-left: 28px;
}
.about-checklist ul li::before {
    width: 20px !important;
    height: 20px !important;
    border-radius: 6px !important;
    background: var(--groo-purple-soft) !important;
    border: 1px solid rgba(123, 93, 255, 0.2) !important;
}


/* ---------- 5. Service cards (legacy theme classes) ---------- */

.service-card {
    background: var(--groo-card-bg) !important;
    border: 1px solid var(--groo-card-border) !important;
    border-radius: var(--groo-radius) !important;
    padding: 36px 32px !important;
    box-shadow: var(--groo-shadow) !important;
    transition: all var(--groo-transition) !important;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--groo-purple), var(--groo-accent));
    opacity: 0;
    transition: opacity var(--groo-transition);
}
.service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--groo-shadow-hover) !important;
    border-color: rgba(123, 93, 255, 0.15) !important;
}
.service-card:hover::after {
    opacity: 1;
}
.service-card .box-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--groo-purple-soft);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all var(--groo-transition);
}
.service-card:hover .box-icon {
    background: var(--groo-purple);
    transform: scale(1.05);
}
.service-card:hover .box-icon img {
    filter: brightness(10);
}
.service-card .box-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 12px;
}
.service-card .box-text {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #666 !important;
}


/* ---------- 6. Process (legacy theme classes) ---------- */

.process-item {
    border-radius: var(--groo-radius) !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
}
.process-item .box-num .number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--groo-accent), var(--groo-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.process-item .box-title {
    font-weight: 700 !important;
}
.process-item .box-img img {
    border-radius: var(--groo-radius-sm);
}


/* ---------- 7. Project / Case study cards (legacy) ---------- */

.project-card {
    border-radius: var(--groo-radius) !important;
    overflow: hidden;
    border: 1px solid var(--groo-card-border) !important;
    box-shadow: var(--groo-shadow) !important;
    transition: all var(--groo-transition) !important;
}
.project-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--groo-shadow-hover) !important;
}
.project-card .box-img img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .box-img img {
    transform: scale(1.05);
}
.project-card .box-sub {
    display: inline-block;
    background: var(--groo-purple-soft);
    color: var(--groo-purple);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.project-card .discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(184, 255, 79, 0.1);
    color: #4a8c00;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(184, 255, 79, 0.2);
}
.project-card .discount::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4a8c00;
}


/* ---------- 8. Counter & marquee (legacy) ---------- */

.counter-card {
    border-radius: var(--groo-radius) !important;
    border: 1px solid var(--groo-card-border);
    transition: all var(--groo-transition);
}
.counter-card:hover {
    border-color: rgba(123, 93, 255, 0.15);
    box-shadow: var(--groo-shadow-hover);
}
.counter-card .box-number {
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--groo-purple), #a78bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.marquee-wrap2.bg-theme2 {
    background: linear-gradient(90deg, #1a1730, #2a1f5e, #1a1730) !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}
.marquee-wrap2 .marquee-card a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    letter-spacing: 0.02em;
}
.marquee-wrap3.bg-theme {
    background: linear-gradient(90deg, var(--groo-purple), #5a3fd4, var(--groo-purple)) !important;
    padding-top: 28px !important;
    padding-bottom: 28px !important;
}
.marquee-wrap3 .marquee-card a {
    font-weight: 500 !important;
    font-size: 16px !important;
}


/* ---------- 9. Why Grooember + integration cards (legacy) ---------- */

.about-wrapper {
    position: relative;
}
.feature-img .box-img img,
.feature-img2 img {
    border-radius: var(--groo-radius);
}

.integration-card {
    background: var(--groo-card-bg) !important;
    border: 1px solid var(--groo-card-border) !important;
    border-radius: var(--groo-radius) !important;
    padding: 32px 28px !important;
    box-shadow: var(--groo-shadow) !important;
    transition: all var(--groo-transition) !important;
}
.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--groo-shadow-hover) !important;
    border-color: rgba(123, 93, 255, 0.15) !important;
}
.integration-card .box-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--groo-purple-soft);
    border-radius: 14px;
    transition: all var(--groo-transition);
}
.integration-card:hover .box-icon {
    background: var(--groo-purple);
}
.integration-card:hover .box-icon img {
    filter: brightness(10);
}
.integration-card .box-title {
    font-size: 18px !important;
    font-weight: 700 !important;
}
.integration-card .box-text {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #666 !important;
}


/* ---------- 10. Testimonial cards (legacy) ---------- */

.testi-card {
    border-radius: var(--groo-radius) !important;
    border: 1px solid var(--groo-card-border) !important;
    box-shadow: var(--groo-shadow) !important;
    transition: all var(--groo-transition) !important;
    padding: 32px !important;
}
.testi-card:hover {
    box-shadow: var(--groo-shadow-hover) !important;
    transform: translateY(-3px);
}
.testi-card .rating i {
    color: #FFB539;
}
.testi-card .box-text {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #444 !important;
}


/* ---------- 11. CTA banner (legacy) ---------- */

.cta-area2 {
    border-radius: 28px !important;
    overflow: hidden;
    position: relative;
}
.cta-area2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(123, 93, 255, 0.92) 0%,
        rgba(90, 63, 212, 0.85) 50%,
        rgba(60, 40, 160, 0.9) 100%
    ) !important;
    z-index: 1;
}
.cta-area2 > * {
    position: relative;
    z-index: 2;
}
.cta-area2 .sec-title {
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}
.cta-area2 .box-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 17px !important;
    line-height: 1.7 !important;
}
.cta-list li {
    font-size: 15px;
}


/* ---------- 12. Contact section ---------- */

.contact-sec {
    background: #f8f8fa !important;
    padding: 100px 0 80px !important;
    position: relative;
}
.contact-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 93, 255, 0.15), transparent);
}
.groo-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 991px) {
    .groo-contact-wrap { grid-template-columns: 1fr; gap: 36px; }
}
.groo-contact-badge {
    display: inline-block;
    background: var(--groo-purple);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.groo-contact-title {
    color: #0A0A10 !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.groo-contact-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.groo-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.groo-contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.groo-contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(123, 93, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}
.groo-contact-info-icon i {
    color: var(--groo-purple);
    font-size: 15px;
}
.groo-contact-info-item span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.groo-contact-info-item a {
    color: #222 !important;
    font-size: 15px;
    text-decoration: none !important;
    font-weight: 600;
}
.groo-contact-info-item a:hover {
    color: var(--groo-purple) !important;
}

.groo-form {
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}
.groo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
@media (max-width: 575px) {
    .groo-form-row { grid-template-columns: 1fr; }
}
.groo-form input,
.groo-form select,
.groo-form textarea {
    width: 100%;
    background: #f8f8fa;
    border: 1px solid #e0e0e5;
    border-radius: 12px;
    padding: 14px 18px;
    color: #222;
    font-size: 14px;
    font-family: 'Pretendard', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.groo-form input::placeholder,
.groo-form textarea::placeholder {
    color: #aaa;
}
.groo-form select {
    color: #aaa;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #f8f8fa;
    padding-right: 40px;
}
.groo-form select option {
    background: #fff;
    color: #222;
}
.groo-form input:focus,
.groo-form select:focus,
.groo-form textarea:focus {
    border-color: var(--groo-purple);
    box-shadow: 0 0 0 3px rgba(123, 93, 255, 0.1);
    background: #fff;
}
.groo-form textarea {
    margin-bottom: 14px;
    resize: vertical;
    min-height: 100px;
}
.groo-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.groo-form-footer p {
    color: #999;
    font-size: 12px;
    margin: 0;
}
.groo-form-footer p a {
    color: var(--groo-purple) !important;
    text-decoration: underline !important;
}

/* Validation + ajax response feedback */
.groo-form .is-invalid {
    border-color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.04) !important;
}
.groo-form .form-messages {
    font-size: 14px;
    line-height: 1.55;
    padding: 0;
    color: transparent;
    transition: color 0.3s ease;
}
.groo-form .form-messages.success,
.groo-form .form-messages.error {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
}
.groo-form .form-messages.success {
    color: #1f7a1f;
    background: rgba(184, 255, 79, 0.18);
    border: 1px solid rgba(74, 140, 0, 0.25);
}
.groo-form .form-messages.error {
    color: #b3261e;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.25);
}
@media (max-width: 575px) {
    .groo-form { padding: 24px; }
    .groo-form-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ---------- 13. Buttons ---------- */

.th-btn {
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.01em;
    padding: 16px 34px !important;
    transition: all var(--groo-transition) !important;
}
.th-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 93, 255, 0.25);
}
.th-btn.th-border {
    border-radius: 100px !important;
}


/* ---------- 14. Footer ---------- */

.groo-footer {
    background: #0A0A10 !important;
    position: relative;
    overflow: hidden;
}
.groo-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(123, 93, 255, 0.07) 0%, transparent 50%);
    pointer-events: none;
}
.groo-footer .widget-area { display: none; }

.groo-ft-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 36px;
    margin: 36px 0 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(123, 93, 255, 0.12) 0%, rgba(90, 63, 212, 0.06) 100%);
    border: 1px solid rgba(123, 93, 255, 0.12);
    position: relative;
    z-index: 1;
}
.groo-ft-cta-text h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}
.groo-ft-cta-text span {
    color: rgba(255, 255, 255, 0.67);
    font-size: 13px;
}
.groo-ft-cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.groo-ft-phone {
    color: rgba(255, 255, 255, 0.67) !important;
    font-size: 13px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}
.groo-ft-phone:hover { color: var(--groo-accent) !important; }
.groo-ft-phone i { color: var(--groo-purple); font-size: 13px; }
@media (max-width: 767px) {
    .groo-ft-cta { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
    .groo-ft-cta-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.groo-ft-main {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.8fr 1fr;
    gap: 40px;
    padding-bottom: 28px;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .groo-ft-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 575px) {
    .groo-ft-main { grid-template-columns: 1fr; gap: 24px; }
}

.groo-ft-logo img {
    height: 32px;
    filter: brightness(1.2);
}
.groo-ft-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.65;
    margin: 12px 0 14px;
    max-width: 340px;
}
.groo-ft-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.groo-ft-contact-row a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 13px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}
.groo-ft-contact-row a:hover { color: #fff !important; }
.groo-ft-contact-row a i {
    color: var(--groo-purple);
    font-size: 12px;
}

.groo-ft-links h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--groo-purple);
    display: inline-block;
}
.groo-ft-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.groo-ft-links ul li a {
    color: rgba(255, 255, 255, 0.67) !important;
    font-size: 13px;
    text-decoration: none !important;
    display: block;
    padding: 3px 0;
    transition: color 0.25s ease;
}
.groo-ft-links ul li a:hover {
    color: #fff !important;
}
.groo-ft-addr {
    color: rgba(255, 255, 255, 0.67);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 10px;
}
.groo-ft-legal {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.groo-ft-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}
.groo-ft-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin: 0;
}
.groo-ft-bottom p a {
    color: rgba(255, 255, 255, 0.67) !important;
    text-decoration: none !important;
}
.groo-ft-bottom p a:hover { color: var(--groo-accent) !important; }
.groo-ft-bottom-links {
    display: flex;
    gap: 0;
    order: 1;
    align-items: center;
}
.groo-ft-bottom-links a + a {
    position: relative;
}
.groo-ft-bottom-links a {
    padding: 0 14px;
    position: relative;
}
.groo-ft-bottom-links a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.18);
}
.groo-ft-bottom p {
    order: 2;
}
.groo-ft-bottom-links a {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 12px;
    text-decoration: none !important;
    transition: color 0.25s ease;
}
.groo-ft-bottom-links a:hover { color: var(--groo-accent) !important; }

/* Mobile copyright bar — links above, copyright below, links separated by a
   thin vertical divider for a tidy single-row caption. */
@media (max-width: 575px) {
    .groo-ft-bottom {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 12px 0 14px;
        text-align: center;
    }
    .groo-ft-bottom-links {
        order: 1;
        gap: 0;
    }
    .groo-ft-bottom-links a {
        font-size: 11px;
        letter-spacing: 0.02em;
        padding: 2px 14px;
        position: relative;
    }
    .groo-ft-bottom-links a + a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 11px;
        background: rgba(255, 255, 255, 0.18);
    }
    .groo-ft-bottom p {
        order: 2;
        font-size: 11.5px;
        line-height: 1.6;
        letter-spacing: 0.02em;
        margin: 0;
    }
    .groo-ft-bottom p a {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.78) !important;
    }
}


/* ---------- 15. Section spacing & utilities ---------- */

.space {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 991px) {
    .space {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.title-area {
    margin-bottom: 56px;
}

.scroll-top {
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(123, 93, 255, 0.25);
}

.loader-letter {
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Preloader: theme defaults (font-size:84px + scale:2) make the "그루엠버"
   text overflow on mobile. Scale down for narrow viewports.
   Wrapper height is sized to the font (1.6em) so the overlay (.loader and its
   ::after gradient) consistently covers the glyphs with a small vertical halo. */
@media (max-width: 767px) {
    .loader-wrapper {
        font-size: clamp(36px, 11vw, 60px) !important;
        scale: 1 !important;
        height: 1.6em !important;
        line-height: 1 !important;
        margin: 1rem !important;
    }
}

a, button, .th-btn, .service-card, .project-card, .testi-card, .integration-card, .counter-card {
    transition: all var(--groo-transition);
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--groo-purple), var(--groo-accent));
    border-radius: 3px;
    opacity: 0.5;
}

.download-area {
    position: relative;
}
.download-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0A0A10 0%, #1a1040 50%, #0A0A10 100%);
    z-index: 0;
}
.download-area > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem !important;
    }
    .service-card {
        padding: 28px 24px !important;
    }
    .testi-card {
        padding: 24px !important;
    }
    .cta-area2 {
        border-radius: 20px !important;
    }
}


/* =============================================
   GROOEMBER V2 - SECTIONS REDESIGNED FROM SCRATCH
   These classes replace legacy theme classes for
   the live page layout. Most of the page above
   actually targets unused theme classes; the V2
   selectors below drive the rendered sections.
============================================= */


/* ---------- V2.1 About (Dark) ---------- */

.groo-about {
    background: var(--groo-dark);
    position: relative;
    overflow: hidden;
}
.groo-about::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 93, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.groo-about-heading {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.groo-about-heading .accent {
    background: linear-gradient(135deg, var(--groo-accent), #d4ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.groo-about-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
}
.groo-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--groo-transition);
    backdrop-filter: blur(8px);
}
.groo-stat-card:hover {
    border-color: rgba(123, 93, 255, 0.3);
    background: rgba(123, 93, 255, 0.06);
    transform: translateY(-4px);
}
.groo-stat-number {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--groo-purple), var(--groo-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.groo-stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
}


/* ---------- V2.2 Services (White) ---------- */

.groo-services {
    background: #fff;
    position: relative;
}
.groo-services .title-area {
    text-align: center;
}
.groo-svc-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--groo-radius);
    padding: 40px 32px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all var(--groo-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.groo-svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--groo-purple), var(--groo-accent));
    opacity: 0;
    transition: opacity var(--groo-transition);
}
.groo-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(123, 93, 255, 0.12);
    border-color: rgba(123, 93, 255, 0.15);
}
.groo-svc-card:hover::after {
    opacity: 1;
}
.groo-svc-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--groo-purple-soft);
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 26px;
    color: var(--groo-purple);
    transition: all var(--groo-transition);
}
.groo-svc-card:hover .groo-svc-icon {
    background: var(--groo-purple);
    color: #fff;
    transform: scale(1.05);
}
.groo-svc-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.groo-svc-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}
.groo-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--groo-purple);
    text-decoration: none;
    transition: gap 0.3s ease;
}
.groo-svc-link:hover {
    gap: 10px;
    color: var(--groo-purple);
}


/* ---------- V2.3 Process (Dark) ---------- */

.groo-process {
    background: var(--groo-dark);
    position: relative;
    overflow: hidden;
}
.groo-process::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at 50% 100%, rgba(123, 93, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.groo-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 20px;
}
.groo-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--groo-purple), var(--groo-accent));
    opacity: 0.3;
}
.groo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}
.groo-step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    background: rgba(123, 93, 255, 0.15);
    border: 2px solid rgba(123, 93, 255, 0.3);
    margin-bottom: 16px;
    transition: all var(--groo-transition);
    position: relative;
}
.groo-step:hover .groo-step-circle {
    background: var(--groo-purple);
    border-color: var(--groo-purple);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(123, 93, 255, 0.4);
}
.groo-step-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}
.groo-step-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    max-width: 130px;
}
@media (max-width: 767px) {
    /* Vertical timeline: anchor every step on the left so the connecting line
       runs through the centre of every circle (timeline metaphor stays intact). */
    .groo-timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        padding-left: 24px;
        padding-top: 0;
    }
    .groo-timeline::before {
        top: 30px;
        bottom: 30px;
        left: 54px;            /* padding-left(24) + circle radius(30) */
        right: auto;
        width: 2px;
        height: auto;
        transform: none;
        background: linear-gradient(180deg, var(--groo-purple), var(--groo-accent));
        opacity: 0.35;
    }
    .groo-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 18px;
        padding: 0;
    }
    .groo-step-circle {
        flex-shrink: 0;
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        background: var(--groo-dark);    /* solid fill so the line doesn't show through */
        border-color: rgba(123, 93, 255, 0.45);
        position: relative;
        z-index: 1;
    }
    .groo-step-desc {
        max-width: none;
    }
}


/* ---------- V2.4 Cases (White) ---------- */

.groo-cases {
    background: #fff;
}
.groo-case-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--groo-radius);
    padding: 36px 28px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all var(--groo-transition);
    height: 100%;
}
.groo-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(123, 93, 255, 0.1);
    border-color: rgba(123, 93, 255, 0.12);
}
.groo-case-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: transform var(--groo-transition);
}
.groo-case-card:hover .groo-case-icon {
    transform: scale(1.1);
}
.groo-case-icon.purple {
    background: rgba(123, 93, 255, 0.1);
    color: var(--groo-purple);
}
.groo-case-icon.green {
    background: rgba(184, 255, 79, 0.15);
    color: #5a8c00;
}
.groo-case-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}
.groo-case-icon.orange {
    background: rgba(251, 146, 60, 0.1);
    color: #f97316;
}
.groo-case-tag {
    display: inline-block;
    background: var(--groo-purple-soft);
    color: var(--groo-purple);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}
.groo-case-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.groo-case-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 16px;
}
.groo-case-metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(184, 255, 79, 0.1);
    color: #4a8c00;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(184, 255, 79, 0.2);
}
.groo-case-metric::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4a8c00;
}


/* ---------- V2.5 Why Grooember (Dark) ---------- */

.groo-why {
    background: var(--groo-dark);
    position: relative;
    overflow: hidden;
}
.groo-why::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 255, 79, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.groo-why-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.groo-why-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.7;
    max-width: 440px;
}
.groo-feat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all var(--groo-transition);
}
.groo-feat-card:hover {
    border-color: rgba(123, 93, 255, 0.25);
    background: rgba(123, 93, 255, 0.06);
    transform: translateY(-3px);
}
.groo-feat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 93, 255, 0.12);
    color: var(--groo-purple);
    font-size: 20px;
    margin: 0 auto 12px;
    transition: all var(--groo-transition);
}
.groo-feat-card:hover .groo-feat-card-icon {
    background: var(--groo-purple);
    color: #fff;
}
.groo-feat-card-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}


/* ---------- V2.6 Tech stack (White) ---------- */

.groo-tech {
    background: #fff;
    position: relative;
}
.groo-tech-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all var(--groo-transition);
    height: 100%;
}
.groo-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(123, 93, 255, 0.1);
    border-color: rgba(123, 93, 255, 0.15);
}
.groo-tech-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--groo-purple-soft);
    color: var(--groo-purple);
    font-size: 24px;
    margin: 0 auto 16px;
    transition: all var(--groo-transition);
}
.groo-tech-card:hover .groo-tech-icon {
    background: var(--groo-purple);
    color: #fff;
}
.groo-tech-name {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}
.groo-tech-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}


/* ---------- V2.7 Testimonials (Dark) ---------- */

.groo-testi {
    background: var(--groo-dark);
    position: relative;
    overflow: hidden;
}
.groo-testi::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 93, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.groo-testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--groo-radius);
    padding: 36px 28px;
    transition: all var(--groo-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.groo-testi-card:hover {
    border-color: rgba(123, 93, 255, 0.2);
    background: rgba(123, 93, 255, 0.05);
    transform: translateY(-4px);
}
.groo-testi-quote {
    font-size: 32px;
    color: var(--groo-purple);
    margin-bottom: 16px;
    opacity: 0.5;
}
.groo-testi-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
}
.groo-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}
.groo-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--groo-purple), var(--groo-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.groo-testi-name {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px;
}
.groo-testi-role {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin: 0;
}


/* ---------- V2.8 Section badges & titles ---------- */

.groo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 93, 255, 0.12);
    border: 1px solid rgba(123, 93, 255, 0.2);
    color: var(--groo-purple);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.groo-badge.light {
    background: rgba(123, 93, 255, 0.08);
    border-color: rgba(123, 93, 255, 0.15);
}
.groo-sec-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 20px;
}
.groo-sec-title.white {
    color: #fff;
}
.groo-sec-title.dark {
    color: #111;
}


/* ---------- V2.9 Responsive ---------- */

@media (max-width: 991px) {
    .groo-about-heading {
        font-size: 2rem;
    }
    .groo-why-heading {
        font-size: 1.8rem;
    }
}
@media (max-width: 575px) {
    .groo-stat-card {
        padding: 20px 16px;
    }
    .groo-svc-card {
        padding: 28px 24px;
    }
    .groo-case-card {
        padding: 28px 20px;
    }
    .groo-testi-card {
        padding: 28px 20px;
    }
    /* Why Grooember: 6 feature cards collapse from 3 columns to 2 on mobile
       so labels like "최신 AI 기술", "친화적 UI/UX" don't break across lines. */
    .groo-why .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .groo-feat-card {
        padding: 20px 14px;
    }
}


/* =============================================
   GROOEMBER V3 - SERVICES (REPIX-FIRST)
   Editorial layout: one large dark feature card
   for Repix (with browser mockup + LIVE badge),
   two compact light cards for the other services.
============================================= */

.groo-services-v3 {
    background: #fff;
    position: relative;
    overflow: hidden;
}
.groo-services-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 100%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 93, 255, 0.18), transparent);
}
.groo-services-v3 .title-area {
    text-align: center;
}
.groo-svc-lede {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    max-width: 580px;
    margin: 8px auto 0;
}

.groo-svc-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    align-items: stretch;
}
@media (max-width: 991px) {
    .groo-svc-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Shared: large editorial number ---------- */

.groo-svc-num {
    font-family: 'Pretendard', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--groo-purple);
}


/* ---------- Feature card (Repix) ---------- */

.groo-svc-feature {
    grid-row: span 2;
    position: relative;
    background: var(--groo-dark);
    color: #fff;
    border-radius: 24px;
    padding: 36px 36px 32px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}
.groo-svc-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(184, 255, 79, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(123, 93, 255, 0.18) 0%, transparent 55%);
    pointer-events: none;
    z-index: -1;
}
.groo-svc-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(184, 255, 79, 0.5), rgba(123, 93, 255, 0.4) 45%, transparent 75%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.groo-svc-feature-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}
.groo-svc-feature .groo-svc-num {
    color: rgba(184, 255, 79, 0.85);
}
.groo-svc-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    border-radius: 100px;
    background: rgba(184, 255, 79, 0.1);
    border: 1px solid rgba(184, 255, 79, 0.32);
    color: var(--groo-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.groo-svc-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--groo-accent);
    box-shadow: 0 0 0 0 rgba(184, 255, 79, 0.6);
    animation: grooLivePulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes grooLivePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184, 255, 79, 0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(184, 255, 79, 0); }
}

.groo-svc-feature-title {
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 14px;
}
.groo-svc-feature-title .brand {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--groo-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.groo-svc-feature-title .brand-logo {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.groo-svc-feature-title .brand-logo img {
    height: 38px;
    width: auto;
    display: block;
}
.groo-svc-feature-title .sub {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    align-self: center;
}
.groo-svc-feature-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 28px;
    max-width: 540px;
}


/* ---- Browser mockup ---- */

.groo-svc-mockup {
    flex: 1;
    background: #06050b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    margin-bottom: 28px;
}
.groo-svc-feature:hover .groo-svc-mockup {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px -20px rgba(123, 93, 255, 0.35);
}
.groo-svc-mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    background: #14131c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.groo-svc-mockup-bar .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.groo-svc-mockup-bar .dot-r { background: #ff5f57; }
.groo-svc-mockup-bar .dot-y { background: #febc2e; }
.groo-svc-mockup-bar .dot-g { background: #28c840; }
.groo-svc-mockup-url {
    flex: 1;
    margin-left: 10px;
    background: #0a090f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Pretendard', sans-serif;
    letter-spacing: 0.01em;
}
.groo-svc-mockup-url svg {
    width: 11px;
    height: 11px;
    color: var(--groo-accent);
    opacity: 0.75;
}
.groo-svc-mockup-body {
    padding: 22px;
    display: grid;
    gap: 20px;
}
.mock-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.mock-kpi {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mock-kpi-num {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum";
}
.mock-kpi:nth-child(1) .mock-kpi-num { color: var(--groo-accent); }
.mock-kpi-lab {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
}
.mock-chart {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    align-items: end;
    height: 84px;
    padding: 8px 4px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.mock-chart-bar {
    height: var(--h);
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, rgba(123, 93, 255, 0.7), rgba(123, 93, 255, 0.2));
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mock-chart-bar.accent {
    background: linear-gradient(180deg, var(--groo-accent), rgba(184, 255, 79, 0.3));
    box-shadow: 0 0 12px rgba(184, 255, 79, 0.3);
}


/* ---- Feature CTA ---- */

.groo-svc-feature-cta {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px 14px 24px;
    background: var(--groo-accent);
    color: #06050b;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.005em;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.groo-svc-feature-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
.groo-svc-feature-cta:hover {
    background: #d4ff80;
    color: #06050b;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(184, 255, 79, 0.35);
}
.groo-svc-feature-cta:hover svg {
    transform: translate(2px, -2px);
}


/* ---------- Side cards (02 / 03) ---------- */

.groo-svc-side {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 30px 30px 26px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}
.groo-svc-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--groo-purple), transparent 60%);
    border-radius: 2px;
    transform-origin: left;
    transform: scaleX(0.4);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.groo-svc-side:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 93, 255, 0.18);
    box-shadow: 0 16px 40px -12px rgba(123, 93, 255, 0.18);
}
.groo-svc-side:hover::before {
    transform: scaleX(1);
}

.groo-svc-side .groo-svc-num {
    display: inline-block;
    margin-bottom: 14px;
}
.groo-svc-side-title {
    font-size: 21px;
    font-weight: 800;
    color: #0f0f17;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    line-height: 1.3;
}
.groo-svc-side-text {
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 0 16px;
}
.groo-svc-side-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.groo-svc-side-bullets li {
    position: relative;
    padding-left: 18px;
    color: #2b2b34;
    font-size: 13.5px;
    line-height: 1.6;
}
.groo-svc-side-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 1px;
    background: var(--groo-purple);
}
.groo-svc-side-link {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--groo-purple);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(123, 93, 255, 0.25);
    transition: gap 0.3s ease, border-color 0.3s ease;
}
.groo-svc-side-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
}
.groo-svc-side-link:hover {
    gap: 10px;
    color: var(--groo-purple);
    border-color: var(--groo-purple);
}
.groo-svc-side-link:hover svg {
    transform: translateX(2px);
}


/* ---------- Responsive ---------- */

@media (max-width: 991px) {
    .groo-svc-feature {
        grid-row: auto;
        padding: 30px 28px 26px;
    }
    .groo-svc-feature-title .brand { font-size: 2.4rem; }
}
@media (max-width: 575px) {
    .groo-svc-feature { padding: 26px 22px 22px; }
    .groo-svc-feature-title { gap: 10px; }
    .groo-svc-feature-title .brand-logo { padding: 8px 14px; }
    .groo-svc-feature-title .brand-logo img { height: 32px; }
    .groo-svc-feature-title .sub {
        padding-left: 0;
        border-left: 0;
        width: 100%;
    }
    .groo-svc-mockup-body { padding: 16px; gap: 14px; }
    .mock-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .mock-kpi { padding: 10px 10px 8px; }
    .mock-kpi-num { font-size: 16px; }
    .mock-chart { height: 64px; }
    .groo-svc-side { padding: 24px 22px 22px; }
}
