/* ============================================================
   HERO.CSS — Full hero section styles
   ============================================================ */

/* ── HERO WRAPPER ── */
.pc-hero {
    background-color: #f0f4fd;
    background-image:
        radial-gradient(at 10% 40%,  rgba(200,240,255,0.7)  0px, transparent 50%),
        radial-gradient(at 80% 80%,  rgba(240,200,255,0.6)  0px, transparent 50%),
        radial-gradient(at 40% 70%,  rgba(210,190,255,0.5)  0px, transparent 50%),
        radial-gradient(at 90% 10%,  rgba(255,240,200,0.6)  0px, transparent 50%),
        radial-gradient(at 50% 30%,  rgba(255,210,230,0.5)  0px, transparent 50%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    padding-top: clamp(80px, 10vw, 120px);
    padding-bottom: clamp(80px, 8vw, 100px);
}

/* ── LEFT COL ── */
.pc-hero__left { display: flex; flex-direction: column; }

/* Status badge */
.pc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--color-indigo-50);
    border: 1px solid var(--color-indigo-100);
    border-radius: 50px;
    color: var(--color-indigo-600);
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 28px;
}
.pc-hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-indigo-500);
    animation: pc-badgePulse 2s infinite;
}
@keyframes pc-badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(99,102,241,0); }
}

/* Headline */
.pc-hero__headline {
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--color-gray-900);
    margin-bottom: 24px;
}

/* Sub text */
.pc-hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--color-gray-500);
    font-weight: 500;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}

/* ── SERVICE PILLS ── */
.pc-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.pc-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: pc-pillIn 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pc-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(99,102,241,0.22);
}
.pc-pill--web     { background:#eef2ff; color:#4f46e5; border:1px solid #c7d2fe; animation-delay:350ms; }
.pc-pill--app     { background:#fdf4ff; color:#9333ea; border:1px solid #e9d5ff; animation-delay:450ms; }
.pc-pill--design  { background:#fff0fb; color:#db2777; border:1px solid #fbcfe8; animation-delay:550ms; }
.pc-pill--seo     { background:#f0fdf4; color:#16a34a; border:1px solid #bbf7d0; animation-delay:650ms; }
.pc-pill--hosting { background:#fff7ed; color:#ea580c; border:1px solid #fed7aa; animation-delay:750ms; }
.pc-pill--dm      { background:#fffbeb; color:#d97706; border:1px solid #fde68a; animation-delay:850ms; }

/* ── CTA BUTTONS ── */
.pc-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}



/* ── RIGHT COL ── */
.pc-hero__right {
    position: relative;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ── FLOATING BADGES ── */
.pc-float-badge {
    position: absolute;
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 18px;
    animation: pc-floatY 4s ease-in-out infinite;
    will-change: transform;
    white-space: nowrap;
}
.pc-float-badge__icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pc-float-badge__title  { font-size: 0.78rem; font-weight: 700; color: var(--color-gray-800); }
.pc-float-badge__sub    { font-size: 0.7rem;  font-weight: 500; color: var(--color-gray-500); margin-top: 1px; }

/* Badge positions & delays */
.pc-float-badge--1 { top: 48px;  right: -100px; animation-delay: 0s; }
.pc-float-badge--2 { bottom: 80px; right: -140px; animation-delay: 1.2s; }
.pc-float-badge--3 { bottom: 160px; right: -120px; animation-delay: 0.6s; }
.pc-float-badge--4 { bottom: 72px;  left: 0;   animation-delay: 2s; }

/* ── GLASS FORM CARD ── */
.pc-form-card {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    padding: clamp(24px,3vw,36px);
}
.pc-form-card__head { text-align: center; margin-bottom: 24px; }
.pc-form-card__icon {
    width: 52px; height: 52px;
    background: var(--color-indigo-50);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--color-indigo-600);
    margin: 0 auto 16px;
}
.pc-form-card__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.pc-form-card__desc  { font-size: 0.85rem; color: var(--color-gray-500); font-weight: 500; }

/* Service tabs */
.pc-service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}
.pc-service-tab {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1.5px solid #e5e7eb;
    background: rgba(255,255,255,0.6);
    color: var(--color-gray-500);
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-main);
}
.pc-service-tab:hover { border-color: var(--color-indigo-200); color: var(--color-indigo-600); }
.pc-service-tab.is-active {
    border-color: var(--color-indigo-200);
    background: var(--color-indigo-50);
    color: #4338ca;
}

/* Form fields */
.pc-form { display: flex; flex-direction: column; gap: 14px; }

/* Submit button */
.pc-submit {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    margin-top: 4px;
}
.pc-submit i { transition: transform 0.2s ease; }
.pc-submit:hover i { transform: translateX(4px) translateY(-4px); }

/* Trust bar */
.pc-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 20px);
    flex-wrap: wrap;
    padding-top: 16px;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.7);
}
.pc-trust__item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-500);
}

/* ── SERVICES TICKER STRIP ── */
.pc-ticker-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.55);
}
.pc-ticker-track {
    display: inline-flex;
    animation: pc-ticker 30s linear infinite;
    white-space: nowrap;
}
.pc-ticker-strip:hover .pc-ticker-track { animation-play-state: paused; }
.pc-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-indigo-500);
}
.pc-ticker-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--color-purple-500);
    flex-shrink: 0;
}

/* ── RESPONSIVE ── */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
    .pc-hero__grid {
        gap: 40px;
    }
    .pc-hero__right { height: 620px; }
    .pc-float-badge { display: none; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .pc-hero {
        min-height: auto;
        padding-bottom: 80px;
    }
    .pc-hero__grid {
        grid-template-columns: 1fr;
        padding-top: clamp(90px, 20vw, 130px);
        padding-bottom: 80px;
        gap: 48px;
    }
    .pc-hero__right {
        height: auto;
        justify-content: center;
    }
    .pc-form-card {
        max-width: 100%;
    }
    .pc-hero__headline {
        font-size: clamp(2.4rem, 9vw, 3.4rem);
    }
    .pc-hero__sub { max-width: 100%; }
    .pc-hero__cta .btn-lg {
        font-size: 1rem;
        padding: 13px 28px;
    }
    .pc-stat { min-width: 72px; padding: 10px 14px; }
    .pc-stat__number { font-size: 1.3rem; }
    .pc-ticker-strip { bottom: 0; }
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
    .pc-hero__pills { gap: 8px; }
    .pc-pill { font-size: 0.8rem; padding: 7px 14px; }
    .pc-hero__cta { flex-direction: column; }
    .pc-hero__cta .btn { width: 100%; justify-content: center; }
    .pc-hero__stats { gap: 8px; }
}