/* ══════════════════════════════════════════════════════
   LANDING PAGE — Complete Architecture CSS
   VIP-Сайт Digital Studio
   Sections: Trust Signals, Problems, Services, Social Proof,
             Portfolio, Transformation, Secondary CTA, Footer
══════════════════════════════════════════════════════ */

/* ─────────────────── HERO EYEBROW ─────────────────── */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--clr-accent-2);
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
    opacity: 0;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-accent-1);
    box-shadow: 0 0 8px var(--clr-accent-1);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* ─────────────────── TRUST SIGNALS ───────────────── */
.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3rem;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--clr-accent-2), var(--clr-accent-1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .trust-signals {
        gap: 1.5rem;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        padding: 0 0.5rem;
    }
}

/* ─────────────────── SECTION SHARED ──────────────── */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent-1);
    margin-bottom: 1.25rem;
    text-align: center;
    display: block;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -0.04em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    max-width: 580px;
    line-height: 1.6;
    margin: 0 auto 4rem auto;
    font-weight: 400;
    text-align: center;
}

/* ─────────────────── GLASS CARD REVEAL ───────────── */
/* Elements start invisible and slide up when observed */
.problem-card,
.service-item,
.testimonial-card,
.portfolio-card,
.transform-stage {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.problem-card.revealed,
.service-item.revealed,
.testimonial-card.revealed,
.portfolio-card.revealed,
.transform-stage.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────── PROBLEM–AGITATE ─────────────── */
.section-problems {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    text-align: left;
}

.problem-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.problem-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.problem-number {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.04em;
    line-height: 1;
    pointer-events: none;
}

.problem-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.problem-desc {
    color: var(--clr-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.problem-agitate {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-accent-1);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    line-height: 1.4;
}

/* Problem transition block */
.problem-transition {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2.5rem 3rem;
    text-align: left;
}

.transition-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.transition-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.transition-content p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.btn-link {
    color: var(--clr-accent-1);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1px;
}

.btn-link:hover {
    color: var(--clr-accent-2);
    border-color: var(--clr-accent-2);
}

@media (max-width: 640px) {
    .problem-transition {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }
}

/* ─────────────────── VALUE STACK / SERVICES ──────── */
.section-services {
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 10;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.service-item {
    display: grid;
    grid-template-columns: 6rem 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.service-item:hover {
    transform: translateX(4px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-featured {
    border-color: rgba(212, 175, 55, 0.25) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(15, 23, 42, 0.6) 100%) !important;
}

.service-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: var(--clr-accent-1);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.service-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.service-content p {
    color: var(--clr-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

.service-value {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    flex-shrink: 0;
    text-align: right;
}

.value-label {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.value-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-accent-2);
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.services-cta-text {
    color: var(--clr-text-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .service-value {
        align-items: flex-start;
        text-align: left;
    }

    .service-badge {
        position: static;
        display: inline-block;
        width: fit-content;
        margin-bottom: 1rem;
    }
}

/* ─────────────────── SOCIAL PROOF ────────────────── */
.section-proof {
    padding: 8rem 0 6rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    text-align: left;
}

.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.06);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px) !important;
}

.testimonial-stars {
    color: var(--clr-accent-1);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--clr-text-main);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 400;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-accent-1), #b89326);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

.testimonial-result {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-accent-1);
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    letter-spacing: 0.3px;
}

/* ─────────────────── PORTFOLIO ───────────────────── */
.section-portfolio {
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
    text-align: left;
}

/* Featured: 4 columns for 8 key projects on homepage */
.portfolio-grid-featured {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
    .portfolio-grid-featured {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .portfolio-grid-featured {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-md);
}

.portfolio-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: rgba(15, 23, 42, 0.8);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s var(--ease-out-expo);
    display: block;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 25, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-visit {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent-1);
    margin-bottom: 0.6rem;
    display: block;
}

.portfolio-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.portfolio-domain {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 400;
}

.portfolio-cta {
    margin-top: 3.5rem;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--clr-accent-2);
    background: transparent;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--clr-accent-1);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ─────────────────── TRANSFORMATION ─────────────── */
.section-transformation {
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.transformation-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 4rem;
    text-align: left;
}

.transform-stage {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo);
}

.transform-stage:hover {
    transform: translateY(-4px) !important;
}

.transform-featured {
    border-color: rgba(212, 175, 55, 0.3) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, rgba(15, 23, 42, 0.6) 100%) !important;
}

.stage-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
}

.stage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.stage-timeframe {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-accent-1);
    margin-bottom: 0.75rem;
}

.stage-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stage-desc {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.stage-metric {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-accent-2);
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
}

/* ─────────────────── HISTORY SECTION ─────────────── */
.section-history {
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 10;
}

/* ─────────────────── SECONDARY CTA ───────────────── */
.section-secondary-cta {
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 10;
}

.secondary-cta-inner {
    text-align: center;
    padding: 5rem 3rem;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.secondary-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Avatar stack */
.avatar-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.avatar-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(11, 15, 25, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    margin-left: -10px;
    transition: transform 0.3s;
    cursor: default;
    position: relative;
    z-index: 1;
}

.avatar-item:first-child {
    margin-left: 0;
}

.avatar-item:hover {
    transform: scale(1.15) translateY(-2px);
    z-index: 10;
}

.cta-social-text {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
}

.secondary-cta-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.secondary-cta-sub {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.cta-micro {
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Dual CTA buttons (merged quiz + audit) */
.cta-dual-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-dual-buttons .btn-xl {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
}

.btn-icon {
    margin-right: 0.35rem;
}

@media (max-width: 640px) {
    .cta-dual-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-dual-buttons .btn-xl {
        max-width: 100%;
        width: 100%;
    }

    .secondary-cta-inner {
        padding: 3.5rem 1.5rem;
    }
}

/* ─────────────────── FOOTER FULL ──────────────────── */
.footer-full {
    margin-top: 0;
    border-top: 1px solid var(--clr-border-glass);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-tagline {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-contact-link:hover {
    color: var(--clr-accent-2);
}

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

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-text-main);
    margin-bottom: 0.5rem;
}

.footer-nav-col a {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-nav-col a:hover {
    color: var(--clr-text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--clr-text-main);
}

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

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

@media (max-width: 560px) {
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─────────────────── NAV ACTIVE LINK ──────────────── */
.nav-link.active {
    color: var(--clr-text-main);
}

/* ─────────────────── LIGHT THEME — PREMIUM REDESIGN (Apple Style) ──────────────── */
body.light-theme {
    background-color: #F5F5F7;
    /* Apple's classic light gray */
    background-image: none;
    /* Cleaner look, no radial gradients */
}

body.light-theme .problem-card,
body.light-theme .testimonial-card,
body.light-theme .transform-stage,
body.light-theme .service-item {
    background: #FFFFFF;
    border-color: rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-radius: 18px;
    /* Slightly rounder for softer feel */
}

body.light-theme .problem-card:hover,
body.light-theme .testimonial-card:hover,
body.light-theme .transform-stage:hover,
body.light-theme .service-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

body.light-theme .glass-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

body.light-theme .glass-panel {
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

body.light-theme .section-eyebrow {
    color: #8E8E93;
    /* Apple standard gray */
    font-weight: 600;
    letter-spacing: 1px;
}

body.light-theme .trust-divider {
    background: rgba(0, 0, 0, 0.06);
}

body.light-theme .problem-agitate {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #1D1D1F;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

body.light-theme .service-featured {
    border-color: rgba(0, 0, 0, 0.08) !important;
    background: #FFFFFF !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .service-badge {
    background: #0071E3;
    /* Apple Blue instead of gold for badge */
    color: #FFF;
}

body.light-theme .btn-outline-gold {
    border-color: rgba(0, 0, 0, 0.15);
    color: #1D1D1F;
    background: transparent;
}

body.light-theme .btn-outline-gold:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.25);
}

body.light-theme .testimonial-card::before {
    color: rgba(0, 0, 0, 0.04);
}

body.light-theme .testimonial-result {
    color: #0071E3;
    background: rgba(0, 113, 227, 0.06);
    border-color: rgba(0, 113, 227, 0.15);
}

body.light-theme .portfolio-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

body.light-theme .portfolio-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body.light-theme .secondary-cta-inner::before {
    display: none;
    /* Clean white bg */
}

body.light-theme .stage-metric {
    color: #0071E3;
    background: rgba(0, 113, 227, 0.06);
    border-color: rgba(0, 113, 227, 0.15);
}

body.light-theme .transform-featured {
    border-color: rgba(154, 123, 10, 0.35) !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
}

body.light-theme .blog-preview-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.light-theme .blog-preview-cat {
    color: #9A7B0A;
}

body.light-theme .blog-preview-read {
    color: #9A7B0A;
}

body.light-theme .footer-full {
    background: rgba(255, 255, 255, 0.85);
    border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-theme .footer-contact-link,
body.light-theme .footer-nav-col a {
    color: #475569;
}

body.light-theme .footer-contact-link:hover,
body.light-theme .footer-nav-col a:hover {
    color: #0F172A;
}

body.light-theme .footer-legal,
body.light-theme .footer-legal-links a {
    color: #64748B;
}

body.light-theme .ambient-orb {
    opacity: 0.5;
}

/* ─────────────────── BLOG PREVIEW (Homepage) ────── */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.blog-preview-card {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.blog-preview-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-accent-1);
}

.blog-preview-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
}

.blog-preview-card p {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.blog-preview-read {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--clr-accent-1);
    transition: color 0.2s;
}

.blog-preview-card:hover .blog-preview-read {
    color: var(--clr-accent-2);
}

@media (max-width: 900px) {
    .blog-preview-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}