/* =====================================================
   Silversmith — Page-specific Styles
   ===================================================== */

/* ============ INDEX — HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 55%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(61, 127, 255, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 45%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(148, 163, 210, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(61, 127, 255, 0.1);
    border: 1px solid rgba(61, 127, 255, 0.25);
    border-radius: 9999px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    color: #60a5fa;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3d7fff;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero h1:not(.hero-headline) {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero-sub {
    color: var(--clr-text-muted);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
}

.hero-stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--grad-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    margin-top: 0.2rem;
}

/* Hero Visual — Animated card stack */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 480px;
}

.hero-card-stack {
    position: relative;
    width: 320px;
}

.hc {
    position: absolute;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 280px;
    transition: transform 0.3s;
}

.hc-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-6deg);
    opacity: 0.5;
}

.hc-2 {
    top: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    opacity: 0.75;
    z-index: 1;
}

.hc-3 {
    top: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    z-index: 2;
}

.hero-card-stack:hover .hc-1 {
    transform: translateX(-50%) rotate(-10deg) translateY(-10px);
}

.hero-card-stack:hover .hc-2 {
    transform: translateX(-50%) rotate(-4deg) translateY(-5px);
}

.hero-card-stack:hover .hc-3 {
    transform: translateX(-50%) rotate(3deg) translateY(5px);
}

.hc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.hc-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.hc-desc {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.hc-bar {
    height: 4px;
    border-radius: 9999px;
    margin-top: 1rem;
    background: var(--grad-silver);
    opacity: 0.4;
}

.hc-bar-2 {
    width: 60%;
    background: var(--grad-gold);
}

/* Floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: rgba(61, 127, 255, 0.12);
    top: -30px;
    right: -40px;
    animation: float1 6s ease-in-out infinite;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: rgba(148, 163, 210, 0.08);
    bottom: 20px;
    left: -30px;
    animation: float2 8s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }
}

/* ============ INDEX — ABOUT ============ */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s;
}

.about-pillar:hover {
    border-color: var(--clr-border-glow);
}

.about-pillar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-pillar h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.about-pillar p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.av-item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.av-item:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-3px);
}

.av-item-num {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: var(--grad-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.av-item-label {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    margin-top: 0.25rem;
}

.av-item:nth-child(3) .av-item-num {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ============ INDEX — SECTIONS ============ */
.section-bg-alt {
    background: rgba(14, 22, 40, 0.5);
}

/* Consulting grid */
.consulting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.consulting-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.consulting-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.cc-blue::after {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.cc-purple::after {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

.cc-gold::after {
    background: var(--grad-gold);
}

.consulting-card:hover::after {
    opacity: 1;
}

.consulting-card:hover {
    border-color: var(--clr-border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.cc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.cc-icon-blue {
    background: rgba(37, 99, 235, 0.15);
}

.cc-icon-purple {
    background: rgba(124, 58, 237, 0.15);
}

.cc-icon-gold {
    background: rgba(200, 155, 60, 0.15);
}

.consulting-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.consulting-card p {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    flex: 1;
}

.cc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cc-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
}

.cc-tag-blue {
    background: rgba(37, 99, 235, 0.12);
    color: #60a5fa;
}

.cc-tag-purple {
    background: rgba(124, 58, 237, 0.12);
    color: #a78bfa;
}

.cc-tag-gold {
    background: rgba(200, 155, 60, 0.12);
    color: #f5d87a;
}

/* Project cards */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
    border-color: var(--clr-border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.project-card-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pc-blifeing {
    background: linear-gradient(135deg, #1a1040, #2d1b69);
}

.pc-gejak {
    background: linear-gradient(135deg, #0a1e14, #0d2b1a);
}

.project-card-body {
    padding: 1.75rem;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.project-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

/* SMS Service */
.sms-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.sms-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.sms-feat {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
}

.sms-feat-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.sms-feat h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.sms-feat p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* Phone mockup for SMS */
.phone-mockup-sm {
    width: 220px;
    margin: 0 auto;
    background: var(--clr-bg-card2);
    border: 1.5px solid var(--clr-border-glow);
    border-radius: 2rem;
    padding: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pm-notch {
    width: 60px;
    height: 6px;
    background: var(--clr-border);
    border-radius: var(--radius-full);
    margin: 0 auto 0.75rem;
}

.pm-screen {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.5rem 0;
}

.pm-msg {
    background: rgba(37, 99, 235, 0.15);
    border-radius: 0.75rem 0.75rem 0.75rem 0.25rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.pm-msg.sent {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(61, 127, 255, 0.2));
    border-radius: 0.75rem 0.75rem 0.25rem 0.75rem;
    color: var(--clr-text);
    align-self: flex-end;
}

.pm-sender {
    font-size: 0.65rem;
    color: var(--clr-accent2);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

/* ============ DETAIL PAGES ============ */

/* Detail hero variations */
.hero-blue {
    --hero-clr: rgba(37, 99, 235, 0.12);
}

.hero-purple {
    --hero-clr: rgba(124, 58, 237, 0.12);
}

.hero-gold {
    --hero-clr: rgba(200, 155, 60, 0.1);
}

.hero-teal {
    --hero-clr: rgba(20, 184, 166, 0.1);
}

.hero-violet {
    --hero-clr: rgba(109, 40, 217, 0.15);
}

.hero-green {
    --hero-clr: rgba(22, 163, 74, 0.1);
}

.page-hero::before {
    background: radial-gradient(ellipse at top left, var(--hero-clr, rgba(61, 127, 255, 0.1)) 0%, transparent 60%);
}

/* Process flow (detail pages) */
.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(to bottom, var(--clr-border-glow), transparent);
}

.ps-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.25rem;
}

.ps-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-bg-card);
    border: 2px solid var(--clr-border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--clr-accent2);
    flex-shrink: 0;
}

.ps-body {
    padding-bottom: 2.5rem;
}

.ps-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-top: 0.6rem;
}

.ps-body p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Feature grid (detail pages) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.feature-item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
}

.feature-item:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-3px);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* Blifeing page specifics */
.blifeing-mockup-wrap {
    display: flex;
    justify-content: center;
    position: relative;
}

.blifeing-phone {
    width: 260px;
    background: #0d0a1e;
    border: 2px solid rgba(108, 53, 222, 0.4);
    border-radius: 2.5rem;
    padding: 1rem 0.75rem;
    box-shadow: 0 30px 80px rgba(108, 53, 222, 0.2), 0 0 0 8px rgba(108, 53, 222, 0.06);
}

.bp-notch {
    width: 70px;
    height: 6px;
    background: rgba(108, 53, 222, 0.3);
    border-radius: var(--radius-full);
    margin: 0 auto 1rem;
}

.bp-screen {
    padding: 0.5rem;
}

.bp-header {
    margin-bottom: 0.75rem;
}

.bp-date {
    font-size: 0.7rem;
    color: rgba(167, 139, 202, 0.7);
}

.bp-greeting {
    font-size: 0.85rem;
    font-weight: 700;
    color: #e8e0ff;
}

.bp-tarot {
    background: linear-gradient(135deg, rgba(108, 53, 222, 0.2), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(108, 53, 222, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.bp-tarot-symbol {
    font-size: 1.5rem;
}

.bp-tarot-name {
    font-size: 0.7rem;
    color: #a78bca;
    font-weight: 600;
}

.bp-tarot-msg {
    font-size: 0.65rem;
    color: rgba(167, 139, 202, 0.7);
}

.bp-diary-lines {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.bp-dl {
    height: 6px;
    border-radius: 3px;
    background: rgba(108, 53, 222, 0.25);
}

.bp-dl.m {
    width: 75%;
}

.bp-dl.s {
    width: 55%;
}

.bp-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 0.75rem;
}

.bp-stat {
    font-size: 0.65rem;
    color: rgba(167, 139, 202, 0.8);
    text-align: center;
}

.bp-stat-icon {
    font-size: 0.9rem;
}

.bp-btn {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(135deg, #6c35de, #8b5cf6);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

/* Plan cards */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.plan-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.plan-card-premium {
    border-color: rgba(108, 53, 222, 0.4);
    background: linear-gradient(135deg, rgba(108, 53, 222, 0.08) 0%, rgba(15, 20, 40, 1) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6c35de, #8b5cf6);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.9rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
}

.plan-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}

.plan-price-val {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.plan-period {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    margin-bottom: 1.5rem;
}

.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
}

.pf-check {
    color: #22c55e;
    flex-shrink: 0;
}

.pf-premium-icon {
    color: #a78bfa;
    flex-shrink: 0;
}

.pf-disabled {
    color: var(--clr-text-dim);
}

/* ============ GEJAK PAGE ============ */
.gejak-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
}

.gejak-flow::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-border-glow) 20%, var(--clr-border-glow) 80%, transparent);
}

.gf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem 2rem;
    position: relative;
}

.gf-dot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--clr-bg-card);
    border: 2px solid var(--clr-border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    z-index: 1;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.gf-step:hover .gf-dot {
    border-color: var(--clr-accent2);
    box-shadow: 0 0 20px rgba(61, 127, 255, 0.2);
}

.gf-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.gf-step p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ============ RESPONSIVE OVERRIDES ============ */
@media (max-width: 1024px) {
    .consulting-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-visual {
        grid-template-columns: repeat(2, 1fr);
    }

    .consulting-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .sms-highlight {
        grid-template-columns: 1fr;
    }

    .sms-features {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .gejak-flow::before {
        display: none;
    }

    .process-step {
        grid-template-columns: 48px 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .about-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============ SEO/AEO/GEO PAGE ============ */
.three-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.pillar-blue {
    border-top: 2px solid rgba(37, 99, 235, 0.5);
}

.pillar-purple {
    border-top: 2px solid rgba(124, 58, 237, 0.5);
}

.pillar-silver {
    border-top: 2px solid rgba(148, 163, 184, 0.5);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.pillar-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.pillar-card h3 small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--clr-text-dim);
    margin-top: 0.2rem;
}

.pillar-card p {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pillar-list li {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    padding-left: 1rem;
    position: relative;
}

.pillar-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--clr-accent2);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.metric-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.metric-card:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-3px);
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.metric-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-card p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

/* ============ AX/RPA PAGE ============ */
.two-col-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.highlight-card:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-4px);
}

.hc-purple {
    border-top: 2px solid rgba(124, 58, 237, 0.5);
}

.hc-blue {
    border-top: 2px solid rgba(37, 99, 235, 0.5);
}

.hc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hc-badge {
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
}

.highlight-card h3 {
    font-size: 1rem;
    font-weight: 700;
}

.highlight-card p {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.fl-icon {
    color: #22c55e;
    flex-shrink: 0;
    font-weight: 700;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.usecase-item {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.usecase-item:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-3px);
}

.usecase-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.usecase-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.usecase-item p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

/* ============ AD MONETIZATION PAGE ============ */
.ad-metrics-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.am-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
}

.am-card:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-3px);
}

.am-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.am-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.am-content p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.platform-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.platform-card:hover {
    border-color: var(--clr-border-glow);
    transform: translateY(-3px);
}

.platform-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.platform-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.platform-card p {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ============ SMS SERVICE PAGE ============ */
.msg-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.msg-type-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.msg-type-card:hover {
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(200, 155, 60, 0.1);
}

.msg-type-badge {
    display: inline-block;
    background: var(--grad-gold);
    color: #1a1000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.msg-badge-lms {
    background: linear-gradient(135deg, #c89b3c 0%, #f5c842 100%);
}

.msg-badge-mms {
    background: linear-gradient(135deg, #a07830 0%, #d4a830 100%);
}

.msg-type-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.msg-type-limit {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    padding: 0.4rem 0.75rem;
    background: rgba(200, 155, 60, 0.08);
    border-radius: var(--radius-full);
    display: inline-block;
}

.msg-type-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.msg-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.msg-feature-list li {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.feature-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feat-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.feat-card:hover {
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateY(-3px);
}

.feat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.feat-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.feat-card p {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.api-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.code-preview {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-family: 'Fira Code', 'JetBrains Mono', 'Courier New', monospace;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.code-dot:nth-child(1) {
    background: #ff5f56;
}

.code-dot:nth-child(2) {
    background: #febc2e;
}

.code-dot:nth-child(3) {
    background: #27c840;
}

.code-lang {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.code-body {
    padding: 1.5rem;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #e6edf3;
    overflow-x: auto;
}

.code-kw {
    color: #ff7b72;
}

.code-str {
    color: #a5d6ff;
}

.code-cm {
    color: #8b949e;
    font-style: italic;
}

/* ============ GRJAKGEJAK PAGE ============ */
.concept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.concept-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.concept-card:hover {
    border-color: rgba(22, 163, 74, 0.3);
    transform: translateY(-3px);
}

.concept-num {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.concept-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.concept-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.concept-card p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.feature-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.feature-row:hover {
    border-color: rgba(22, 163, 74, 0.3);
}

.fr-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.fr-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.fr-content p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* ============ BLIFEING PAGE ============ */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.how-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.how-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
}

.how-step {
    font-size: 0.7rem;
    font-weight: 800;
    color: #a78bfa;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.how-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.how-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.how-card p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.bf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bf-feat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.bf-feat:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.bf-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.bf-feat h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.bf-feat p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-card-premium {
    border-color: rgba(124, 58, 237, 0.4);
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.08) 0%, var(--clr-bg-card) 60%);
}

.plan-badge {
    display: inline-block;
    background: rgba(200, 155, 60, 0.15);
    color: #f5d87a;
    border: 1px solid rgba(200, 155, 60, 0.3);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.plan-badge-premium {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 92, 246, 0.15));
    color: #a78bfa;
    border-color: rgba(124, 58, 237, 0.4);
}

.plan-price {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--clr-text-muted);
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-features li {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    padding-left: 0;
}

.download-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    color: var(--clr-text);
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.store-btn span small {
    display: block;
    font-size: 0.65rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.1rem;
}

.store-btn span {
    font-size: 0.95rem;
    font-weight: 700;
}

.phone-preview {
    perspective: 1000px;
}

.pp-screen {
    background: linear-gradient(160deg, #0d0820, #1a0a40);
    border: 1.5px solid rgba(124, 58, 237, 0.3);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.pp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pp-date {
    font-size: 0.75rem;
    color: #a78bfa;
}

.pp-gem {
    font-size: 0.7rem;
    color: rgba(167, 139, 250, 0.6);
}

.pp-diary {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.pp-diary p {
    font-size: 0.8rem;
    color: rgba(220, 215, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.pp-photo {
    font-size: 0.75rem;
    color: #a78bfa;
    padding: 0.35rem 0.75rem;
    background: rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-full);
    display: inline-block;
}

.pp-tarot {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(245, 200, 66, 0.08));
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pp-tarot-title {
    font-size: 0.75rem;
    color: #a78bfa;
    font-weight: 600;
}

.pp-tarot-card {
    font-size: 0.75rem;
    color: #f5d87a;
}

/* ============ SKT OUTLINK PAGE ============ */
.outlink-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.compare-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--clr-border);
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-row.compare-header {
    background: rgba(255, 255, 255, 0.03);
}

.compare-cell {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    border-right: 1px solid var(--clr-border);
}

.compare-cell:last-child {
    border-right: none;
}

.compare-header .compare-cell {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--clr-text-dim);
}

.compare-skt {
    color: #34d399 !important;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.04);
}

.compare-other {
    color: rgba(255, 255, 255, 0.3) !important;
}

.targeting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.targeting-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
}

.targeting-card:hover {
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateY(-4px);
}

.tg-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.targeting-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.targeting-card p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tg-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tg-list li {
    font-size: 0.78rem;
    color: var(--clr-text-dim);
    padding-left: 0.9rem;
    position: relative;
}

.tg-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--clr-accent2);
}

.msg-ui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.msg-ui-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.msg-ui-card:hover {
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateY(-4px);
}

.mui-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.msg-ui-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.mui-sub {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    margin-bottom: 1rem;
}

.msg-ui-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.msg-ui-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.msg-ui-features li {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.msg-ui-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.muf-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.muf-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.muf-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.muf-item p {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.perf-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.perf-card:hover {
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateY(-4px);
}

.perf-badge {
    display: inline-block;
    border: 1px solid;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.perf-stat {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #c89b3c, #f5d87a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.perf-stat span {
    font-size: 1.25rem;
}

.perf-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

.perf-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pr-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.pr-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pr-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.pr-item p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.case-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.case-card:hover {
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateY(-4px);
}

.case-card-special {
    grid-column: 1 / -1;
    border-color: rgba(200, 155, 60, 0.25);
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.06) 0%, var(--clr-bg-card) 60%);
}

.case-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.case-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.case-card>p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.case-target,
.case-message {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
}

.case-target-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #f5d87a;
    margin-bottom: 0.3rem;
}

.case-target p,
.case-message p {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.case-tag {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(200, 155, 60, 0.12);
    border: 1px solid rgba(200, 155, 60, 0.25);
    border-radius: var(--radius-full);
    color: #f5d87a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.why-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.3s, transform 0.3s;
}

.why-card:hover {
    border-color: rgba(200, 155, 60, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.why-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ============================================================
   NEW HERO — 리디자인 (문제 해결 중심 프리미엄 컨설턴트)
   ============================================================ */

/* Canvas 배경 */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
}

/* Hero 컨테이너 — 2컬럼 (58:42 비율로 좌측 카피 공간 확보) */
.hero-container {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 왼쪽 콘텐츠 영역 */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Trust Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(61, 127, 255, 0.08);
    border: 1px solid rgba(61, 127, 255, 0.2);
    border-radius: 9999px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-accent2);
    letter-spacing: 0.04em;
    width: fit-content;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
    animation: badgePulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.1);
    }
}

/* Headline */
.hero-headline {
    font-size: clamp(2.4rem, 4.2vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero-headline-em {
    background: linear-gradient(135deg, #c89b3c 0%, #f5d87a 40%, #c89b3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* Sub copy */
.hero-sub {
    color: var(--clr-text-muted);
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    line-height: 1.8;
    max-width: 540px;
}

.hero-sub strong {
    color: var(--clr-text);
    font-weight: 700;
}

/* Keyword Chips */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-chip {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid;
    letter-spacing: 0.06em;
}

.hero-chip-blue {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    color: #93c5fd;
}

.hero-chip-purple {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    color: #c4b5fd;
}

.hero-chip-gold {
    background: rgba(200, 155, 60, 0.1);
    border-color: rgba(200, 155, 60, 0.3);
    color: #fcd34d;
}

/* CTA Group — 2개 버튼 */
.hero-cta-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

/* 서비스 텍스트 링크 */
.hero-service-links {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-top: -0.3rem;
}

.hero-service-links a {
    color: var(--clr-text-muted);
    transition: color 0.2s;
    text-underline-offset: 3px;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.hero-service-links a:hover {
    color: var(--clr-accent2);
    text-decoration-color: var(--clr-accent2);
}

.hero-cta-primary {
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
}

.hero-cta-gold {
    background: linear-gradient(135deg, #c89b3c, #f5d87a);
    color: #1a1000;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(200, 155, 60, 0.3);
}

.hero-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 155, 60, 0.45);
}

.hero-cta-outline {
    border: 1.5px solid rgba(148, 163, 210, 0.25);
    color: var(--clr-text-muted);
}

.hero-cta-outline:hover {
    border-color: var(--clr-accent2);
    color: var(--clr-text);
    background: rgba(61, 127, 255, 0.07);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.hero-stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--clr-border);
    flex-shrink: 0;
}

/* ── Right panel ── */
.hero-right {
    position: relative;
}

/* Stacked cards */
.hero-panel-stack {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.hp-card {
    background: rgba(14, 22, 40, 0.88);
    border: 1px solid var(--clr-border);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.3s, transform 0.35s;
}

.hp-c1 {
    animation: floatCard 6s ease-in-out infinite;
    border-color: rgba(37, 99, 235, 0.2);
}

.hp-c2 {
    animation: floatCard 6s ease-in-out infinite 1.5s;
    border-color: rgba(124, 58, 237, 0.2);
}

.hp-c3 {
    animation: floatCard 6s ease-in-out infinite 3s;
    border-color: rgba(200, 155, 60, 0.2);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hp-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(148, 163, 210, 0.3);
}

/* Card header */
.hp-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.hp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hp-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hp-sub {
    font-size: 0.75rem;
    color: var(--clr-text-dim);
    margin-top: 0.15rem;
}

/* Metric bar */
.hp-metric-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hp-metric {
    display: grid;
    grid-template-columns: 4.5rem 1fr 3rem;
    align-items: center;
    gap: 0.5rem;
}

.hp-metric-label {
    font-size: 0.7rem;
    color: var(--clr-text-dim);
}

.hp-metric-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-align: right;
}

.hp-bar-wrap {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 9999px;
    height: 6px;
    overflow: hidden;
}

.hp-bar {
    height: 100%;
    border-radius: 9999px;
    transform-origin: left;
    transform: scaleX(0);
    animation: barGrow 1.4s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes barGrow {
    to {
        transform: scaleX(1);
    }
}

/* Floating pills */
.hp-pill {
    position: absolute;
    background: rgba(10, 20, 40, 0.9);
    border: 1px solid var(--clr-border);
    border-radius: 9999px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    white-space: nowrap;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hp-pill-1 {
    top: -18px;
    right: 24px;
    animation: floatCard 5s ease-in-out infinite 0.5s;
}

.hp-pill-2 {
    bottom: -18px;
    left: 24px;
    animation: floatCard 5s ease-in-out infinite 2s;
}

/* ──  Responsive  ── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right {
        display: none;
    }

    .hero-headline {
        font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    }
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .hero-stats {
        gap: 1rem;
    }
}

/* ============ RESPONSIVE — NEW COMPONENTS ============ */
@media (max-width: 1024px) {
    .three-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .api-showcase {
        grid-template-columns: 1fr;
    }

    .download-cta {
        grid-template-columns: 1fr;
    }

    .bf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .three-pillars {
        grid-template-columns: 1fr;
    }

    .two-col-highlight {
        grid-template-columns: 1fr;
    }

    .usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .msg-type-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .ad-metrics-showcase {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .bf-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .concept-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid-4 {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ INDEX — 신규 시각 요소 ============ */

/* Consulting 신뢰 배지 */
.cc-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: -0.25rem;
}

.cc-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.85;
}

/* Consulting 미니 바 차트 */
.cc-mini-chart {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0.875rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
}

.cc-mini-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cc-mini-label {
    font-size: 0.68rem;
    color: var(--clr-text-dim);
    min-width: 60px;
    flex-shrink: 0;
}

.cc-mini-bar-wrap {
    flex: 1;
    height: 5px;
    background: rgba(255,255,255,0.07);
    border-radius: 9999px;
    overflow: hidden;
}

.cc-mini-bar {
    height: 100%;
    border-radius: 9999px;
    animation: bar-grow 1.2s cubic-bezier(.4,0,.2,1) both;
    transform-origin: left;
}

@keyframes bar-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.cc-mini-val {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--clr-text);
    min-width: 36px;
    text-align: right;
    flex-shrink: 0;
}

/* Ad Monetization 3요소 비교 */
.cc-value-trio {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0.65rem 0.5rem;
    background: rgba(200,155,60,0.05);
    border: 1px solid rgba(200,155,60,0.12);
    border-radius: var(--radius-md);
    gap: 0.25rem;
}

.cc-trio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.cc-trio-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.cc-trio-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #f5d87a;
    text-align: center;
    white-space: nowrap;
}

.cc-trio-divider {
    width: 1px;
    height: 28px;
    background: rgba(200,155,60,0.2);
    flex-shrink: 0;
}

/* Service — TPO 배지 */
.sms-tpo-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.sms-tpo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(200,155,60,0.1);
    border: 1px solid rgba(200,155,60,0.2);
    color: #f5d87a;
    letter-spacing: 0.03em;
}

.sms-tpo-badge.sms-tpo-highlight {
    background: rgba(200,155,60,0.18);
    border-color: rgba(200,155,60,0.4);
    color: #fde68a;
}

/* Projects — 마일스톤 알림 */
.project-milestone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 0.25rem;
}

.project-milestone-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

/* Projects — Blifeing 인용구 */
.project-quote {
    font-size: 0.82rem;
    font-style: italic;
    color: var(--clr-text-muted);
    line-height: 1.6;
    padding: 0.6rem 0.875rem;
    border-left: 2px solid rgba(139,92,246,0.4);
    background: rgba(139,92,246,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 0.5rem;
}

.project-quote-mark {
    font-style: normal;
    font-size: 1rem;
    color: rgba(139,92,246,0.6);
    font-weight: 700;
}

/* 반응형 */
@media (max-width: 768px) {
    .cc-value-trio {
        gap: 0.1rem;
    }
    .cc-trio-label {
        font-size: 0.6rem;
    }
    .sms-tpo-badges {
        gap: 0.35rem;
    }
}