/* ===== PAGE HERO ===== */
.page-hero {
    padding: 9rem 2rem 3.5rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 60%, var(--red-light) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192,22,31,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.1s forwards;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--gray-300); }
.breadcrumb .current { color: var(--text-secondary); font-weight: 600; }

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.2s forwards;
}

.page-hero h1 .red { color: var(--red); }

.page-hero .hero-intro {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 680px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.3s forwards;
    margin-bottom: 0.6rem;
}

.page-hero .hero-intro-sub {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.65;
    opacity: 0;
    animation: fadeUp 0.5s ease 0.4s forwards;
}

/* ===== WHO WE ARE ===== */
.who-we-are { background: var(--white); }

.who-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.who-text p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.who-text p:first-of-type {
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
}

.founder-quote {
    margin-top: 1.8rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-left: 4px solid var(--red);
    border-radius: 0 12px 12px 0;
}

.founder-quote p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.founder-quote .quote-name {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--red);
    font-style: normal;
}

.founder-quote .quote-role {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: normal;
}

.who-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.who-images .img-placeholder {
    aspect-ratio: 1;
    border-radius: 14px;
}

.who-images .img-placeholder:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/10;
}

.who-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.who-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.who-badge:hover {
    border-color: var(--gray-300);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.who-badge i { font-size: 1.1rem; flex-shrink: 0; }
.who-badge i.red-icon { color: var(--red); }
.who-badge i.green-icon { color: var(--green); }
.who-badge span { font-size: 0.82rem; font-weight: 700; color: var(--text); }

/* ===== SPICE PORTFOLIO ===== */
.spice-portfolio { background: var(--gray-50); }

.spice-grid-processed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
}

.spice-card-new {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(12px);
}

.spice-card-new.visible {
    opacity: 1;
    transform: translateY(0);
}

.spice-card-new:hover {
    border-color: var(--red);
    box-shadow: 0 8px 28px rgba(192,22,31,0.08);
    transform: translateY(-4px);
}

.spice-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--red-light), #fff5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.spice-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spice-card-new:hover .spice-card-img img {
    transform: scale(1.05);
}

.spice-card-body {
    padding: 1.2rem 1.3rem 1.3rem;
}

.spice-card-body h3 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.spice-card-body p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.spice-tags {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.stag {
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

.stag-red {
    background: var(--red-light);
    color: var(--red);
}

.stag-green {
    background: var(--green-light);
    color: var(--green);
}

/* ===== HOW WE WORK ===== */
.how-we-work { background: var(--white); }

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

.how-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px);
}

.how-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.how-card:hover {
    border-color: var(--gray-300);
    box-shadow: 0 8px 28px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.how-card:hover::before { transform: scaleX(1); }

.how-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.how-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-icon-red { background: var(--red-light); }
.how-icon-red i { font-size: 1.3rem; color: var(--red); }
.how-icon-green { background: var(--green-light); }
.how-icon-green i { font-size: 1.3rem; color: var(--green); }

.how-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.how-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== KEY PERSON ===== */
.key-person { background: var(--gray-50); }

.person-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 3rem;
    align-items: start;
}

.person-photo-wrapper {
    position: relative;
}

.person-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--gray-100) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border);
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.person-photo-label {
    position: absolute;
    bottom: -10px;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.person-photo-label h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text);
}

.person-photo-label span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--red);
}

.person-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.person-content .person-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.person-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.person-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.person-highlight {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 0.9rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.person-highlight i {
    font-size: 1rem;
    color: var(--green);
    flex-shrink: 0;
}

.person-highlight span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
}

/* ===== VALUES STRIP ===== */
.values-strip {
    padding: 3.5rem 2rem;
    background: var(--green);
    position: relative;
    overflow: hidden;
}

.values-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.values-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.6rem;
}

.value-item h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.value-item p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ===== CTA ===== */
.about-cta {
    padding: 5rem 2rem;
    background: var(--white);
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon i {
    font-size: 1.6rem;
    color: var(--red);
}

.cta-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.cta-inner p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.cta-phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone-icon i { color: var(--green); font-size: 1.1rem; }

.cta-phone-text { text-align: left; }

.cta-phone-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cta-phone-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.cta-phone-number a {
    color: var(--text);
    text-decoration: none;
}

.cta-phone-number a:hover { color: var(--red); }

/* ===== EXTENDED ANIMATION DELAYS ===== */
.d8 { transition-delay: 0.48s; }
.d9 { transition-delay: 0.54s; }
.d10 { transition-delay: 0.60s; }
.d11 { transition-delay: 0.66s; }
.d12 { transition-delay: 0.72s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .who-grid,
    .person-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .how-grid {
        grid-template-columns: 1fr 1fr;
    }
    .values-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero { padding: 7rem 1.5rem 2.5rem; }
    .how-grid { grid-template-columns: 1fr; }
    .spice-grid-processed { grid-template-columns: 1fr; }
    .person-highlights { grid-template-columns: 1fr; }
    .values-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .who-badges { grid-template-columns: 1fr; }
    .values-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
