/**
 * Guide (Home) Page Styles
 * Design: ガイドブック / パンフレット / 上品ロマンチックで"案内のうまさ"
 * Updated: パワフルで読みやすいフォントサイズ、SVGアイコン対応
 */

/* ===== Variables ===== */
:root {
    /* Colors */
    --guide-primary: #1e3a5f;
    --guide-secondary: #2d5a87;
    --guide-accent: #39b7ff;
    --guide-accent-light: #a8e0ff;
    --guide-accent-dark: #0095e8;
    --guide-light: #f0f9ff;
    --guide-cream: #f0faff;
    --guide-dark: #1a202c;
    --guide-gray: #5a7184;
    --guide-white: #ffffff;

    /* Shadows */
    --guide-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --guide-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Typography */
    --guide-font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    --guide-font-section-title: 32px;
    --guide-font-card-title: 20px;
    --guide-font-body: 16px;
    --guide-font-label: 13px;
    --guide-font-small: 12px;

    /* Spacing */
    --guide-radius: 12px;
    --guide-radius-lg: 20px;
}

/* ===== Base ===== */
.lp-guide {
    font-family: var(--guide-font-main);
    color: var(--guide-dark);
    line-height: 1.8;
    background: var(--guide-white);
    overflow-x: hidden;
    font-size: var(--guide-font-body);
}

/* Responsive line break - shown by default (PC), hidden on mobile */
.guide-br-sm {
    display: inline;
}

@media (max-width: 768px) {
    .guide-br-sm {
        display: none;
    }
}

.lp-guide *,
.lp-guide *::before,
.lp-guide *::after {
    box-sizing: border-box;
}

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

@media (max-width: 768px) {
    .guide-container {
        padding: 0 20px;
    }
}

/* ===== Section Base ===== */
.guide-section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .guide-section {
        padding: 80px 0;
    }
}

.guide-section__title {
    font-size: var(--guide-font-section-title);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--guide-primary);
    position: relative;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .guide-section__title {
        font-size: 26px;
        margin-bottom: 44px;
    }
}

.guide-section__title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--guide-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.guide-section__subtitle {
    text-align: center;
    font-size: var(--guide-font-label);
    color: var(--guide-gray);
    letter-spacing: 0.1em;
    margin-top: 12px;
    margin-bottom: 50px;
}

/* ===== Hero Section ===== */
.guide-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--guide-cream);
    text-align: center;
    padding: 140px 0 100px;
}

@media (max-width: 768px) {
    .guide-hero {
        min-height: 70vh;
        padding: 120px 0 80px;
    }
}

.guide-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(57, 183, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(57, 183, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guide-hero__content {
    position: relative;
    z-index: 1;
}

/* Avatar */
.guide-hero__avatar {
    width: 160px;
    height: 160px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--guide-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--guide-white);
}

@media (max-width: 768px) {
    .guide-hero__avatar {
        width: 130px;
        height: 130px;
        margin-bottom: 24px;
    }
}

.guide-hero__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-hero__label {
    font-size: var(--guide-font-label);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--guide-accent);
    margin-bottom: 12px;
    font-weight: 600;
}

.guide-hero__title {
    font-size: clamp(48px, 10vw, 72px);
    font-weight: 900;
    color: var(--guide-primary);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.guide-hero__name-en {
    font-size: 14px;
    color: var(--guide-gray);
    margin-bottom: 28px;
    letter-spacing: 0.1em;
}

.guide-hero__tagline {
    font-size: 24px;
    color: var(--guide-secondary);
    line-height: 1.9;
    font-weight: 500;
}

@media (max-width: 768px) {
    .guide-hero__tagline {
        font-size: 20px;
    }
}

/* Hero Video Background */
.guide-hero--video {
    background: transparent;
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    padding: 0;
    flex-direction: column;
}

.guide-hero--video::before {
    display: none;
}

.guide-hero--video .guide-container {
    position: absolute;
    top: 20px;
    left: 24px;
    right: auto;
    z-index: 10;
}

.guide-hero--video .guide-hero__content {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    z-index: 2;
}

.guide-hero--video .guide-hero__avatar {
    width: 80px;
    height: 80px;
    margin: 0;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.9);
}

.guide-hero--video .guide-hero__info {
    display: flex;
    flex-direction: column;
}

.guide-hero--video .guide-hero__label {
    color: var(--guide-accent-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 11px;
    margin-bottom: 4px;
    order: 1;
}

.guide-hero--video .guide-hero__title {
    color: var(--guide-white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    font-size: 28px;
    margin-bottom: 2px;
    order: 2;
}

.guide-hero--video .guide-hero__name-en {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 11px;
    margin-bottom: 0;
    order: 3;
}

/* Video wrapper - PC */
.guide-hero__video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.guide-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-hero__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.1) 20%,
        rgba(0, 0, 0, 0.1) 80%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .lp-guide {
        padding: 0;
        margin: 0;
    }

    .guide-hero--video {
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        width: 100vw;
        margin-left: calc(-50vw + 50%) !important;
    }

    .guide-hero--video .guide-hero__video-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 */
        border-radius: 0;
    }

    .guide-hero--video .guide-container {
        position: absolute;
        top: 8px;
        left: 8px;
        right: auto;
        padding: 0;
        background: transparent;
        max-width: none;
        z-index: 10;
    }

    .guide-hero--video .guide-hero__content {
        gap: 10px;
    }

    .guide-hero--video .guide-hero__avatar {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }

    .guide-hero--video .guide-hero__label {
        font-size: 8px;
    }

    .guide-hero--video .guide-hero__title {
        font-size: 16px;
    }

    .guide-hero--video .guide-hero__name-en {
        font-size: 8px;
    }

    .guide-hero__video {
        object-fit: cover;
    }

    .guide-hero__video-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.1) 15%,
            rgba(0, 0, 0, 0.1) 85%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }
}

/* ===== Current Work Section (三刀流) ===== */
.guide-work {
    background: var(--guide-light);
    padding: 80px 0;
}

.guide-work__wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guide-work__photo {
    flex-shrink: 0;
    width: 280px;
}

.guide-work__photo img {
    width: 100%;
    height: auto;
    border-radius: var(--guide-radius-lg);
    box-shadow: var(--guide-shadow-lg);
}

.guide-work__content {
    flex: 1;
}

.guide-work__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--guide-primary);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.guide-work__subtitle {
    font-weight: 500;
    color: var(--guide-gray);
}

.guide-work__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-work__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--guide-white);
    border-radius: var(--guide-radius);
    box-shadow: var(--guide-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-work__item:hover {
    transform: translateX(6px);
    box-shadow: var(--guide-shadow-lg);
}

.guide-work__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--guide-accent);
    color: var(--guide-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.guide-work__item-content {
    flex: 1;
}

.guide-work__role {
    font-size: 18px;
    font-weight: 700;
    color: var(--guide-primary);
    margin: 0 0 6px;
}

.guide-work__desc {
    font-size: 14px;
    color: var(--guide-gray);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .guide-work {
        padding: 60px 0;
    }

    .guide-work__wrapper {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .guide-work__photo {
        width: 200px;
    }

    .guide-work__title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

    .guide-work__item {
        padding: 16px;
    }

    .guide-work__role {
        font-size: 16px;
    }

    .guide-work__desc {
        font-size: 13px;
    }
}

/* Work Section - Services Grid */
.guide-work__services {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-work__services-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--guide-primary);
    text-align: center;
    margin-bottom: 24px;
}

.guide-work__services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.guide-work__service-card {
    display: flex;
    flex-direction: column;
    background: var(--guide-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--guide-radius);
    text-decoration: none;
    color: var(--guide-dark);
    transition: all 0.3s ease;
    overflow: hidden;
}

.guide-work__service-card:hover {
    border-color: var(--guide-accent);
    box-shadow: var(--guide-shadow);
    transform: translateY(-2px);
}

.guide-work__service-icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    flex-shrink: 0;
}

.guide-work__service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-work__service-card:hover .guide-work__service-icon img {
    transform: scale(1.05);
}

.guide-work__service-body {
    padding: 16px;
    text-align: center;
}

.guide-work__service-tagline {
    font-size: 11px;
    color: var(--guide-accent);
    margin: 0 0 4px;
    font-weight: 600;
}

.guide-work__service-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--guide-primary);
    margin: 0 0 6px;
}

.guide-work__service-desc {
    font-size: 13px;
    color: var(--guide-gray);
    margin: 0;
    line-height: 1.5;
}

.guide-work__service-arrow {
    display: none;
}

@media (max-width: 900px) {
    .guide-work__services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .guide-work__services {
        margin-top: 32px;
        padding-top: 32px;
    }

    .guide-work__service-body {
        padding: 12px;
    }

    .guide-work__service-name {
        font-size: 14px;
    }

    .guide-work__service-desc {
        font-size: 12px;
    }
}

/* ===== Career Timeline Section ===== */
.guide-career {
    background: var(--guide-white);
}

.guide-career__wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.guide-career__photo {
    flex-shrink: 0;
    width: 280px;
    position: sticky;
    top: 100px;
}

.guide-career__photo img {
    width: 100%;
    height: auto;
    border-radius: var(--guide-radius-lg);
    box-shadow: var(--guide-shadow-lg);
}

/* Career without photo */
.guide-career__wrapper--no-photo {
    max-width: 700px;
}

.guide-career__wrapper--no-photo .guide-career__timeline {
    padding-left: 50px;
}

.guide-career__wrapper--no-photo .guide-career__timeline::before {
    left: 15px;
}

.guide-career__wrapper--no-photo .guide-career__item::before {
    left: -42px;
}

@media (max-width: 768px) {
    .guide-career__wrapper {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .guide-career__photo {
        width: 200px;
        position: static;
    }

    .guide-career__wrapper--no-photo .guide-career__timeline {
        padding-left: 35px;
    }

    .guide-career__wrapper--no-photo .guide-career__timeline::before {
        left: 8px;
    }

    .guide-career__wrapper--no-photo .guide-career__item::before {
        left: -33px;
    }
}

/* Current Work - 三刀流 */
.guide-career__current {
    max-width: 800px;
    margin: 0 auto 60px;
    background: var(--guide-white);
    border-radius: var(--guide-radius-lg);
    padding: 32px;
    box-shadow: var(--guide-shadow);
}

.guide-career__current-label {
    font-size: var(--guide-font-card-title);
    font-weight: 700;
    color: var(--guide-primary);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.guide-career__current-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-career__current-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--guide-light);
    border-radius: var(--guide-radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-career__current-item:hover {
    transform: translateX(4px);
    box-shadow: var(--guide-shadow);
}

.guide-career__current-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--guide-accent);
    color: var(--guide-white);
    font-size: var(--guide-font-small);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.guide-career__current-content h4 {
    font-size: var(--guide-font-body);
    font-weight: 700;
    color: var(--guide-primary);
    margin-bottom: 4px;
}

.guide-career__current-content p {
    font-size: 14px;
    color: var(--guide-gray);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .guide-career__current {
        padding: 24px 20px;
        margin-bottom: 40px;
    }

    .guide-career__current-label {
        font-size: 18px;
    }

    .guide-career__current-item {
        padding: 12px;
    }

    .guide-career__current-content h4 {
        font-size: 15px;
    }

    .guide-career__current-content p {
        font-size: 13px;
    }
}

.guide-career__timeline {
    position: relative;
    flex: 1;
    padding-left: 40px;
}

.guide-career__timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--guide-accent), var(--guide-accent-light));
}

.guide-career__item {
    position: relative;
    padding-bottom: 40px;
}

.guide-career__item:last-child {
    padding-bottom: 0;
}

.guide-career__item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--guide-white);
    border: 3px solid var(--guide-accent);
    box-shadow: 0 0 0 4px rgba(57, 183, 255, 0.2);
}

.guide-career__year {
    display: inline-block;
    font-size: var(--guide-font-small);
    font-weight: 700;
    color: var(--guide-accent-dark);
    background: rgba(57, 183, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.guide-career__role {
    font-size: 18px;
    font-weight: 700;
    color: var(--guide-primary);
    margin-bottom: 8px;
}

.guide-career__desc {
    font-size: 14px;
    color: var(--guide-gray);
    line-height: 1.7;
}

.guide-career__skills {
    margin-top: 50px;
    text-align: center;
}

.guide-career__skills-label {
    font-size: var(--guide-font-small);
    font-weight: 600;
    color: var(--guide-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.guide-career__skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.guide-career__skills-list span {
    display: inline-block;
    font-size: var(--guide-font-label);
    color: var(--guide-secondary);
    background: var(--guide-white);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(57, 183, 255, 0.3);
    transition: all 0.2s ease;
}

.guide-career__skills-list span:hover {
    background: var(--guide-accent);
    color: var(--guide-white);
    border-color: var(--guide-accent);
}

@media (max-width: 768px) {
    .guide-career__timeline {
        padding-left: 30px;
    }

    .guide-career__timeline::before {
        left: 6px;
    }

    .guide-career__item::before {
        left: -30px;
        width: 14px;
        height: 14px;
    }

    .guide-career__desc {
        font-size: 13px;
    }

    .guide-career__skills-list span {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* ===== Hobbies / What I Love Section ===== */
.guide-hobbies {
    background: var(--guide-light);
}

.guide-hobbies__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .guide-hobbies__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.guide-hobbies-card {
    background: var(--guide-white);
    border-radius: var(--guide-radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--guide-shadow);
    transition: all 0.3s ease;
}

.guide-hobbies-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--guide-shadow-lg);
}

.guide-hobbies-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--guide-light);
    border-radius: 50%;
    color: var(--guide-accent);
    margin-bottom: 16px;
}

.guide-hobbies-card__image {
    width: 100%;
    margin-bottom: 16px;
    border-radius: var(--guide-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.guide-hobbies-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.guide-hobbies-card:hover .guide-hobbies-card__image img {
    transform: scale(1.03);
}

.guide-hobbies-card__image--wide {
    aspect-ratio: 16 / 9;
}

.guide-hobbies-card__image--wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-hobbies-card__image--square {
    aspect-ratio: 1 / 1;
}

.guide-hobbies-card__image--square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-hobbies-card__icon-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--guide-radius);
    overflow: hidden;
    margin-bottom: 16px;
}

.guide-hobbies-card__icon-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.guide-hobbies-card:hover .guide-hobbies-card__icon-photo img {
    transform: scale(1.03);
}

.guide-hobbies-card--wide {
    grid-column: span 3;
}

@media (max-width: 900px) {
    .guide-hobbies-card--wide {
        grid-column: span 1;
    }
}

.guide-hobbies-card__title {
    font-size: var(--guide-font-card-title);
    font-weight: 700;
    color: var(--guide-primary);
    margin: 0 0 12px;
}

.guide-hobbies-card__text {
    font-size: 14px;
    color: var(--guide-gray);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

.guide-hobbies-card__text .guide-phrase {
    display: block;
    margin-bottom: 0.5em;
}

.guide-hobbies-card__text .guide-phrase:last-child {
    margin-bottom: 0;
}

.guide-hobbies__message {
    max-width: 700px;
    margin: 50px auto 0;
    text-align: center;
    padding: 32px;
    background: var(--guide-white);
    border-radius: var(--guide-radius-lg);
    border-left: 4px solid var(--guide-accent);
}

.guide-hobbies__message p {
    font-size: 18px;
    font-weight: 500;
    color: var(--guide-primary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .guide-hobbies-card {
        padding: 24px 20px;
    }

    .guide-hobbies-card__icon {
        width: 56px;
        height: 56px;
    }

    .guide-hobbies-card__title {
        font-size: 18px;
    }

    .guide-hobbies-card__text {
        font-size: 13px;
    }

    .guide-hobbies__message {
        padding: 24px;
        margin-top: 32px;
    }

    .guide-hobbies__message p {
        font-size: 16px;
    }
}

/* ===== MVV Section ===== */
.guide-mvv {
    background: var(--guide-white);
}

.guide-mvv__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.guide-mvv-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: var(--guide-light);
    border-radius: var(--guide-radius-lg);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.guide-mvv-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.guide-mvv-card:hover {
    box-shadow: var(--guide-shadow);
}

.guide-mvv-card__icon {
    flex-shrink: 0;
    color: var(--guide-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--guide-white);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.guide-mvv-card__icon svg {
    width: 48px;
    height: 48px;
}

.guide-mvv-card__body {
    flex: 1;
    min-width: 0;
}

.guide-mvv-card__label {
    display: inline-block;
    font-size: var(--guide-font-label);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--guide-accent);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--guide-accent-light);
}

.guide-mvv-card__text {
    font-size: var(--guide-font-body);
    color: var(--guide-dark);
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

/* Phrase wrapping - each phrase stays together, breaks between phrases */
.guide-phrase {
    display: inline;
    white-space: nowrap;
}

.guide-phrase + .guide-phrase {
    margin-left: 0.25em;
}

@media (max-width: 640px) {
    .guide-phrase {
        display: block;
        white-space: normal;
    }
    .guide-phrase + .guide-phrase {
        margin-left: 0;
        margin-top: 0.25em;
    }
}

.guide-mvv-card--values .guide-mvv-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guide-mvv-card--values .guide-mvv-card__list li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-size: var(--guide-font-body);
    color: var(--guide-dark);
    font-weight: 500;
}

.guide-mvv-card--values .guide-mvv-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--guide-accent);
    border-radius: 50%;
}

/* ===== Belief Section ===== */
.guide-belief {
    background: var(--guide-cream);
}

.guide-belief__content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.guide-belief__content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.guide-belief__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-belief__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (max-width: 640px) {
    .guide-belief__item {
        flex-direction: column;
        gap: 16px;
    }
}

.guide-belief__item-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--guide-white);
    border-radius: 16px;
    color: var(--guide-accent);
    box-shadow: var(--guide-shadow);
}

.guide-belief__item-content {
    flex: 1;
}

.guide-belief__item-title {
    font-size: var(--guide-font-card-title);
    font-weight: 700;
    color: var(--guide-primary);
    margin: 0 0 16px;
}

.guide-belief__item p {
    font-size: var(--guide-font-body);
    color: var(--guide-secondary);
    margin: 0;
    line-height: 1.8;
}

/* ===== Portfolio Section ===== */
.guide-portfolio {
    background: var(--guide-white);
}

.guide-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 900px) {
    .guide-portfolio__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.guide-portfolio-card {
    padding: 32px 28px;
    background: var(--guide-light);
    border-radius: var(--guide-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.guide-portfolio-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.guide-portfolio-card:hover {
    box-shadow: var(--guide-shadow-lg);
    border-color: var(--guide-accent-light);
}

.guide-portfolio-card__title {
    font-size: var(--guide-font-card-title);
    font-weight: 700;
    color: var(--guide-primary);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--guide-accent-light);
}

.guide-portfolio-card__row {
    margin-bottom: 16px;
}

.guide-portfolio-card__row:last-of-type {
    margin-bottom: 16px;
}

.guide-portfolio-card__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--guide-font-small);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--guide-accent);
    margin-bottom: 8px;
}

.guide-portfolio-card__label svg {
    color: var(--guide-accent);
}

.guide-portfolio-card__row p {
    font-size: 14px;
    color: var(--guide-dark);
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
}

.guide-portfolio-card__row .guide-phrase {
    white-space: normal;
    display: inline;
}

.guide-portfolio-card__results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-portfolio-card__results li {
    font-size: 14px;
    color: var(--guide-dark);
    line-height: 1.6;
    font-weight: 500;
    padding-left: 18px;
    position: relative;
    margin-bottom: 2px;
}

.guide-portfolio-card__results li:last-child {
    margin-bottom: 0;
}

.guide-portfolio-card__results li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background: var(--guide-accent);
    border-radius: 50%;
}

.guide-portfolio-card__tech {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--guide-font-small);
    color: var(--guide-gray);
    padding-top: 16px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.guide-portfolio-card__tech svg {
    flex-shrink: 0;
}

/* Portfolio Media */
.guide-portfolio-card__media {
    margin: 16px 0 20px;
    border-radius: var(--guide-radius);
    overflow: hidden;
    background: var(--guide-light);
}

.guide-portfolio-card__video,
.guide-portfolio-card__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--guide-radius);
}

.guide-portfolio-card__video {
    max-height: 300px;
    object-fit: contain;
    background: #000;
}

.guide-portfolio-card__image {
    object-fit: cover;
}

/* Portfolio Reviews */
.guide-portfolio-card__reviews {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.guide-portfolio-card__reviews > .guide-portfolio-card__label {
    margin-bottom: 12px;
}

.guide-portfolio-card__reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.guide-portfolio-card__review-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-portfolio-card__review-img:hover {
    transform: scale(1.02);
    box-shadow: var(--guide-shadow-lg);
}

@media (max-width: 768px) {
    .guide-portfolio-card__reviews-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .guide-portfolio-card__video {
        max-height: 200px;
    }
}

/* ===== Services Section ===== */
.guide-services {
    background: var(--guide-light);
}

.guide-services__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.guide-service-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--guide-white);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--guide-radius-lg);
    text-decoration: none;
    color: var(--guide-dark);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.guide-service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.guide-service-card:hover {
    border-color: var(--guide-accent);
    box-shadow: var(--guide-shadow-lg);
    transform: translateY(-4px);
}

.guide-service-card__icon {
    flex-shrink: 0;
    color: var(--guide-accent);
}

.guide-service-card__content {
    flex: 1;
}

.guide-service-card__tagline {
    font-size: var(--guide-font-small);
    color: var(--guide-accent);
    font-weight: 600;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
}

.guide-service-card__title {
    font-size: var(--guide-font-card-title);
    font-weight: 700;
    color: var(--guide-primary);
    margin: 0 0 10px;
}

.guide-service-card__desc {
    font-size: 14px;
    color: var(--guide-gray);
    margin: 0;
    line-height: 1.7;
}

.guide-service-card__arrow {
    flex-shrink: 0;
    color: var(--guide-accent);
    transition: transform 0.3s ease;
}

.guide-service-card:hover .guide-service-card__arrow {
    transform: translateX(6px);
}

/* ===== CTA Section ===== */
.guide-cta {
    background: var(--guide-primary);
    color: var(--guide-white);
    text-align: center;
    padding: 120px 0;
}

@media (max-width: 768px) {
    .guide-cta {
        padding: 100px 0;
    }
}

.guide-cta__content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.guide-cta__content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.guide-cta__lead {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .guide-cta__lead {
        font-size: 28px;
    }
}

.guide-cta__sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 44px;
    line-height: 1.8;
}

.guide-cta__note {
    font-size: 14px;
    opacity: 0.75;
    margin-top: 24px;
}

/* ===== Button ===== */
.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 52px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--guide-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

@media (max-width: 768px) {
    .guide-btn {
        padding: 22px 40px;
        font-size: 18px;
    }
}

.guide-btn--primary {
    background: #06C755;
    color: var(--guide-white);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

.guide-btn--primary:hover {
    background: #05b34d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.5);
}

.guide-btn__icon {
    display: flex;
    align-items: center;
}

.guide-btn__icon svg {
    width: 26px;
    height: 26px;
}

/* ===== Responsive Fine-tuning ===== */
@media (max-width: 480px) {
    .guide-section {
        padding: 70px 0;
    }

    .guide-section__title {
        font-size: 22px;
        margin-bottom: 36px;
    }

    .guide-hero {
        padding: 100px 0 70px;
        min-height: 65vh;
    }

    .guide-hero__avatar {
        width: 130px;
        height: 130px;
    }

    .guide-hero__title {
        font-size: 36px;
    }

    .guide-hero__tagline {
        font-size: 16px;
    }

    .guide-mvv-card {
        padding: 24px 20px;
        gap: 16px;
    }

    .guide-mvv-card__icon {
        width: 52px;
        height: 52px;
    }

    .guide-mvv-card__icon svg {
        width: 36px;
        height: 36px;
    }

    .guide-portfolio-card {
        padding: 28px 24px;
    }

    .guide-service-card {
        padding: 28px;
        gap: 18px;
    }

    .guide-service-card__icon svg {
        width: 40px;
        height: 40px;
    }

    .guide-cta {
        padding: 80px 0;
    }

    .guide-cta__lead {
        font-size: 22px;
    }

    .guide-btn {
        padding: 20px 36px;
        font-size: 16px;
        width: 100%;
    }
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.is-active {
    display: flex;
}

.lightbox__img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.lightbox__close:hover {
    transform: scale(1.1);
}

/* Review images clickable */
.guide-portfolio-card__review-img {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guide-portfolio-card__review-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== MAGICAL ANIMATIONS ===== */

/* === 1. Hero Particles === */
.guide-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.guide-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(168, 224, 255, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100%) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-50vh) translateX(30px) scale(1);
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}

/* === 2. Avatar Magic Entrance === */
.guide-hero--video .guide-hero__avatar {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guide-hero--video .guide-hero__avatar--entered {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(57, 183, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 50px rgba(57, 183, 255, 0.5);
    }
}

.guide-hero--video .guide-hero__info {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
}

.guide-hero--video .guide-hero__info--entered {
    opacity: 1;
    transform: translateX(0);
}

/* === 3. Typewriter Effect === */
.guide-typewriter {
    border-right: 2px solid var(--guide-accent-light);
    animation: blink 0.8s step-end infinite;
}

.guide-typewriter--done {
    border-right-color: transparent;
    animation: none;
}

@keyframes blink {
    50% {
        border-right-color: transparent;
    }
}

/* === 4. Timeline Drawing Animation === */
.guide-career__timeline::before {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.5s ease-out;
}

.guide-career__timeline--drawing::before {
    transform: scaleY(1);
}

.guide-career__item::before {
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guide-career__item--pulse::before {
    transform: scale(1);
    animation: timelinePulse 0.6s ease-out;
}

@keyframes timelinePulse {
    0% {
        transform: scale(0);
        box-shadow: 0 0 0 0 rgba(57, 183, 255, 0.6);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 0 15px rgba(57, 183, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(57, 183, 255, 0.2);
    }
}

/* === 5. Card Spotlight Effect === */
.guide-hobbies-card {
    transition: all 0.4s ease;
}

.guide-hobbies-card--dimmed {
    opacity: 0.4;
    filter: grayscale(30%);
    transform: scale(0.98);
}

.guide-hobbies-card--spotlight {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 60px rgba(57, 183, 255, 0.1);
    z-index: 10;
}

/* === 6. MVV Card Reveal === */
.guide-mvv-card {
    opacity: 0;
    transform: translateY(30px) rotateX(-10deg);
    transform-origin: top center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guide-mvv-card--revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* === 7. CTA Button Pulse === */
.guide-cta .guide-btn--primary {
    position: relative;
    overflow: visible;
}

.guide-btn__pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(6, 199, 85, 0.5);
    border-radius: var(--guide-radius);
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.guide-btn__particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.guide-btn__particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-60px);
    animation: particleOrbit 4s linear infinite;
    opacity: 0;
}

@keyframes particleOrbit {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-50px) scale(0);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(calc(var(--angle) + 20deg)) translateY(-60px) scale(1);
    }
    80% {
        opacity: 0.5;
        transform: translate(-50%, -50%) rotate(calc(var(--angle) + 160deg)) translateY(-70px) scale(0.5);
    }
}

/* === 8. Scroll Progress Bar === */
.guide-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--guide-accent), var(--guide-accent-light));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(57, 183, 255, 0.5);
}

/* === 9. Belief Item Animation === */
.guide-belief__item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.guide-belief__item--visible {
    opacity: 1;
    transform: translateX(0);
}

.guide-belief__item-icon {
    transition: all 0.3s ease;
}

.guide-belief__item--visible .guide-belief__item-icon {
    animation: iconBounce 0.6s ease-out 0.3s, beliefIconFloat 3s ease-in-out 1s infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* === 10. Portfolio Card Stagger === */
.guide-portfolio-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* === 11. Work Item 3D Tilt === */
.guide-work__item {
    transition: transform 0.15s ease-out, box-shadow 0.2s ease;
    transform-style: preserve-3d;
}

.guide-work__item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* === 12. Skills Tag Animation === */
.guide-career__skills-list span {
    opacity: 0;
    transform: translateY(15px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guide-career__skills-list span.guide-skill--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === 13. Hobbies Message Highlight === */
.guide-hobbies__message {
    transition: all 0.6s ease-out;
}

.guide-hobbies__message--highlight {
    animation: messageHighlight 0.8s ease-out;
}

@keyframes messageHighlight {
    0% {
        transform: scale(0.95);
        box-shadow: none;
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(57, 183, 255, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

/* === 14. Service Card Shimmer + Shadow Pulse === */
.guide-work__service-card {
    position: relative;
    overflow: hidden;
    animation: serviceShadowPulse 3s ease-in-out infinite;
}

.guide-work__services-grid .guide-work__service-card:nth-child(1) { animation-delay: 0s; }
.guide-work__services-grid .guide-work__service-card:nth-child(2) { animation-delay: 0.3s; }
.guide-work__services-grid .guide-work__service-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes serviceShadowPulse {
    0%, 100% {
        box-shadow: none;
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 15px 30px -5px rgba(57, 183, 255, 0.12), 0 8px 15px -5px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }
}

.guide-work__service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.guide-work__service-card:hover::after {
    left: 100%;
}

/* === 15. Section Title Animation === */
.guide-section__title {
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.guide-section__title.is-visible {
    animation: titleReveal 0.8s ease-out forwards;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-section__title::after {
    transform: scaleX(0);
    transition: transform 0.6s ease-out 0.3s;
}

.guide-section__title.is-visible::after {
    transform: scaleX(1);
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
    .guide-particle {
        width: 3px;
        height: 3px;
    }

    .guide-scroll-progress {
        height: 2px;
    }

    .guide-btn__particle {
        display: none;
    }

    .guide-hobbies-card--dimmed,
    .guide-hobbies-card--spotlight {
        opacity: 1;
        filter: none;
        transform: none;
        box-shadow: var(--guide-shadow);
    }
}

/* ===== LIVING ANIMATIONS (常時動く) ===== */

/* === 1. Avatar Float === */
.guide-hero--video .guide-hero__avatar--entered {
    animation: avatarFloat 4s ease-in-out infinite, avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* === 2. Timeline Light Flow === */
.guide-career__timeline::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--guide-accent), var(--guide-accent-light), transparent);
    border-radius: 2px;
    animation: timelineLightFlow 3s ease-in-out infinite;
    z-index: 1;
}

.guide-career__wrapper--no-photo .guide-career__timeline::after {
    left: 14px;
}

@media (max-width: 768px) {
    .guide-career__timeline::after {
        left: 5px;
        width: 3px;
        height: 20px;
    }

    .guide-career__wrapper--no-photo .guide-career__timeline::after {
        left: 7px;
    }
}

@keyframes timelineLightFlow {
    0% {
        top: -30px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* === 3. Skill Tags Subtle Sway === */
.guide-career__skills-list span.guide-skill--visible {
    animation: skillSway 3s ease-in-out infinite;
    animation-delay: var(--sway-delay, 0s);
}

.guide-career__skills-list span:nth-child(1) { --sway-delay: 0s; }
.guide-career__skills-list span:nth-child(2) { --sway-delay: 0.2s; }
.guide-career__skills-list span:nth-child(3) { --sway-delay: 0.4s; }
.guide-career__skills-list span:nth-child(4) { --sway-delay: 0.6s; }
.guide-career__skills-list span:nth-child(5) { --sway-delay: 0.8s; }
.guide-career__skills-list span:nth-child(6) { --sway-delay: 1.0s; }
.guide-career__skills-list span:nth-child(7) { --sway-delay: 0.3s; }
.guide-career__skills-list span:nth-child(8) { --sway-delay: 0.5s; }
.guide-career__skills-list span:nth-child(9) { --sway-delay: 0.7s; }
.guide-career__skills-list span:nth-child(10) { --sway-delay: 0.9s; }
.guide-career__skills-list span:nth-child(11) { --sway-delay: 0.1s; }

@keyframes skillSway {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-2px) rotate(-1deg);
    }
    75% {
        transform: translateY(1px) rotate(1deg);
    }
}

/* === 4. Card Breathing === */
.guide-portfolio-card--visible,
.guide-mvv-card--revealed {
    animation: cardBreathing 4s ease-in-out infinite;
}

/* === Hobbies Card - Shadow Pulse === */
.guide-hobbies-card {
    animation: hobbiesShadowPulse 3s ease-in-out infinite;
}

.guide-hobbies-card:nth-child(1) { animation-delay: 0s; }
.guide-hobbies-card:nth-child(2) { animation-delay: 0.4s; }
.guide-hobbies-card:nth-child(3) { animation-delay: 0.8s; }

@keyframes hobbiesShadowPulse {
    0%, 100% {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 20px 40px -5px rgba(57, 183, 255, 0.15), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }
}

@keyframes cardBreathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.005);
    }
}

/* === Hobbies Underwater & Fairy Magic === */
.guide-hobbies {
    position: relative;
    overflow: hidden;
}

.guide-hobbies__effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.guide-hobbies .guide-container {
    position: relative;
    z-index: 1;
}

/* Bubbles - 泡 */
.guide-hobbies__bubble {
    position: absolute;
    bottom: -50px;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(57, 183, 255, 0.3) 50%,
        rgba(57, 183, 255, 0.1) 100%);
    border-radius: 50%;
    animation: bubbleRise 10s ease-in-out infinite;
    opacity: 0;
    box-shadow:
        inset -2px -2px 4px rgba(255, 255, 255, 0.8),
        inset 2px 2px 4px rgba(57, 183, 255, 0.2),
        0 0 8px rgba(57, 183, 255, 0.3);
}

@keyframes bubbleRise {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 0.7;
        transform: translateX(-10px) scale(1);
    }
    50% {
        transform: translateX(15px) scale(1.1);
    }
    90% {
        opacity: 0.5;
        transform: translateX(-5px) scale(0.9);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(10px) scale(0.7);
    }
}

/* Light Fairies - 光の妖精 */
.guide-hobbies__fairy {
    position: absolute;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 220, 100, 1) 25%,
        rgba(255, 180, 50, 0.8) 50%,
        transparent 100%);
    border-radius: 50%;
    animation: fairyGlow 1.5s ease-in-out infinite;
    box-shadow:
        0 0 8px rgba(255, 220, 100, 1),
        0 0 18px rgba(255, 200, 50, 0.9),
        0 0 30px rgba(255, 180, 50, 0.6);
}

.guide-hobbies__fairy::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    line-height: 1;
}

.guide-hobbies__fairy-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 220, 100, 1) 0%, rgba(255, 200, 50, 0.5) 50%, transparent 100%);
    border-radius: 50%;
    animation: sparkleTrail 1s ease-out infinite;
    box-shadow: 0 0 10px rgba(255, 220, 100, 0.8);
}

.guide-hobbies__fairy-sparkle:nth-child(1) {
    top: -6px;
    left: -10px;
    animation-delay: 0s;
}

.guide-hobbies__fairy-sparkle:nth-child(2) {
    top: 6px;
    left: -14px;
    animation-delay: 0.15s;
}

.guide-hobbies__fairy-sparkle:nth-child(3) {
    top: 16px;
    left: -10px;
    animation-delay: 0.3s;
}

@keyframes fairyGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 10px rgba(255, 220, 100, 1),
            0 0 25px rgba(255, 200, 50, 0.9),
            0 0 40px rgba(255, 180, 50, 0.6);
    }
    50% {
        transform: scale(1.3);
        box-shadow:
            0 0 15px rgba(255, 220, 100, 1),
            0 0 35px rgba(255, 200, 50, 1),
            0 0 55px rgba(255, 180, 50, 0.8),
            0 0 80px rgba(255, 150, 50, 0.5);
    }
}

@keyframes sparkleTrail {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.3) translateX(-20px);
    }
}

/* Caustics - 水面の光 */
.guide-hobbies__caustics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100px 80px at 20% 30%, rgba(57, 183, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 120px 100px at 70% 60%, rgba(57, 183, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 80px 60px at 50% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 150px 120px at 80% 20%, rgba(57, 183, 255, 0.05) 0%, transparent 70%);
    animation: causticsWave 8s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes causticsWave {
    0%, 100% {
        transform: scale(1) translateX(0);
        opacity: 0.7;
    }
    25% {
        transform: scale(1.05) translateX(10px);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.98) translateX(-5px);
        opacity: 0.8;
    }
    75% {
        transform: scale(1.02) translateX(5px);
        opacity: 0.6;
    }
}

/* Mobile: reduce effects for performance */
@media (max-width: 768px) {
    /* Hide some bubbles (keep first 8) */
    .guide-hobbies__bubble:nth-of-type(n+9) {
        display: none;
    }

    /* Keep fairies but make them smaller */
    .guide-hobbies__fairy {
        width: 10px;
        height: 10px;
        box-shadow:
            0 0 6px rgba(255, 220, 100, 1),
            0 0 12px rgba(255, 200, 50, 0.8);
    }

    .guide-hobbies__fairy::before {
        font-size: 6px;
    }

    /* Hide sparkle trails on mobile for performance */
    .guide-hobbies__fairy-sparkle {
        display: none;
    }
}

/* === 5. Section Background Gradient Flow === */
.guide-work {
    background: linear-gradient(135deg, var(--guide-light) 0%, #e8f4ff 50%, var(--guide-light) 100%);
    background-size: 200% 200%;
    animation: gradientFlow 8s ease-in-out infinite;
}

.guide-hobbies {
    background: linear-gradient(135deg, var(--guide-light) 0%, #f0f9ff 50%, #e8f4ff 100%);
    background-size: 200% 200%;
    animation: gradientFlow 10s ease-in-out infinite;
}

.guide-belief {
    background: linear-gradient(135deg, var(--guide-cream) 0%, #e8f7ff 50%, var(--guide-cream) 100%);
    background-size: 200% 200%;
    animation: gradientFlow 12s ease-in-out infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* === 6. Floating Particles (Global) === */
.guide-global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.guide-global-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(57, 183, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: globalParticleFloat 15s linear infinite;
    opacity: 0;
}

@keyframes globalParticleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.4;
    }
    95% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* === 7. Card Border Light Runner === */
.guide-work__service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--guide-radius);
    background: linear-gradient(90deg, transparent, rgba(57, 183, 255, 0.3), transparent);
    background-size: 200% 100%;
    animation: borderLightRun 3s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-work__service-card:hover::before {
    opacity: 1;
}

/* Portfolio card - title underline light flow */
.guide-portfolio-card__title {
    position: relative;
    overflow: hidden;
}

.guide-portfolio-card__title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--guide-accent-light), var(--guide-accent), var(--guide-accent-light), transparent);
    animation: titleLightFlow 3s ease-in-out infinite;
}

@keyframes titleLightFlow {
    0% {
        left: -60%;
    }
    100% {
        left: 100%;
    }
}

@keyframes borderLightRun {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* === 8. Mouse Follow Light (cursor glow) === */
.guide-cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(57, 183, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.guide-cursor-glow.is-active {
    opacity: 1;
}

/* === 9. Parallax Background Elements === */
.guide-section {
    position: relative;
    overflow: hidden;
}

.guide-parallax-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 183, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.guide-parallax-shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.guide-parallax-shape--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.guide-parallax-shape--3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
}

/* === 10. Photo Aura Ring === */
.guide-work__photo {
    position: relative;
}

.guide-work__photo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 2px solid transparent;
    border-radius: var(--guide-radius-lg);
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        var(--guide-accent) 0deg,
        transparent 60deg,
        transparent 180deg,
        var(--guide-accent-light) 240deg,
        transparent 300deg
    ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: auraRotate 6s linear infinite;
    opacity: 0.6;
}

.guide-work__photo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(57, 183, 255, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: auraPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes auraRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes auraPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* === Timeline Points Continuous Pulse === */
.guide-career__item--pulse::before {
    animation: continuousPulse 2s ease-in-out infinite;
}

@keyframes continuousPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(57, 183, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(57, 183, 255, 0.1), 0 0 20px rgba(57, 183, 255, 0.3);
    }
}

/* ===== ICON SPECIAL EFFECTS ===== */

/* === MVV Icons - Float + Hover Rotate + Pulse Glow === */
.guide-mvv-card__icon {
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
}

.guide-mvv-card__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(57, 183, 255, 0.3) 0%, transparent 70%);
    animation: iconPulseGlow 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes iconPulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.guide-mvv-card__icon svg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.guide-mvv-card:hover .guide-mvv-card__icon svg {
    transform: rotate(360deg);
}

/* === Belief Icons - Stroke Draw + Bounce + Float === */
.guide-belief__item-icon {
    animation: beliefIconFloat 3s ease-in-out infinite;
}

.guide-belief__item-icon svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.8s ease-out;
}

.guide-belief__item--visible .guide-belief__item-icon svg {
    stroke-dashoffset: 0;
    animation: iconBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

@keyframes iconBounceIn {
    0% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes beliefIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* === Work Number Badge - Pop In + Rotating Sparkle Border === */
.guide-work__number {
    position: relative;
    overflow: visible;
}

/* Rotating sparkle border */
.guide-work__number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 270deg,
        rgba(255, 255, 255, 0.9) 300deg,
        var(--guide-accent-light) 330deg,
        rgba(255, 255, 255, 0.9) 360deg
    );
    animation: numberBorderRotate 2s linear infinite;
    z-index: -1;
}

/* Inner mask to show only the border */
.guide-work__number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--guide-accent);
    z-index: -1;
}

@keyframes numberBorderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Stagger animation delay for each number */
.guide-work__item:nth-child(1) .guide-work__number::before { animation-delay: 0s; }
.guide-work__item:nth-child(2) .guide-work__number::before { animation-delay: 0.3s; }
.guide-work__item:nth-child(3) .guide-work__number::before { animation-delay: 0.6s; }

/* Pop In Animation on first appearance */
.guide-work__item.is-visible .guide-work__number {
    animation: numberPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes numberPopIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(57, 183, 255, 0);
    }
    60% {
        transform: scale(1.2) rotate(10deg);
        box-shadow: 0 0 30px 10px rgba(57, 183, 255, 0.5);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(57, 183, 255, 0);
    }
}

.guide-work__item {
    opacity: 0;
    transform: translateY(20px);
}

.guide-work__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.guide-work__item.is-visible .guide-work__number {
    animation: numberPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes numberPopIn {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* === Portfolio Label Icons - Wiggle === */
.guide-portfolio-card__label svg {
    animation: iconWiggle 2s ease-in-out infinite;
    animation-delay: var(--wiggle-delay, 0s);
}

.guide-portfolio-card__row:nth-child(1) .guide-portfolio-card__label svg {
    --wiggle-delay: 0s;
}

.guide-portfolio-card__row:nth-child(2) .guide-portfolio-card__label svg {
    --wiggle-delay: 0.3s;
}

.guide-portfolio-card__reviews .guide-portfolio-card__label svg {
    --wiggle-delay: 0.6s;
}

@keyframes iconWiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-10deg);
    }
    20% {
        transform: rotate(10deg);
    }
    30% {
        transform: rotate(-5deg);
    }
    40% {
        transform: rotate(5deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}

/* === Tech Icon Pulse === */
.guide-portfolio-card__tech svg {
    animation: techPulse 1.5s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* === Hobbies Card Title Sparkle === */
.guide-hobbies-card__title {
    position: relative;
    display: inline-block;
}

.guide-hobbies-card:hover .guide-hobbies-card__title::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -20px;
    font-size: 14px;
    animation: sparkleAppear 0.3s ease-out;
}

@keyframes sparkleAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-30deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* === Career Timeline Year Badge Glow === */
.guide-career__year {
    position: relative;
    overflow: visible;
}

.guide-career__item--pulse .guide-career__year {
    animation: yearGlow 1s ease-out;
}

@keyframes yearGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 183, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(57, 183, 255, 0.3);
    }
    100% {
        box-shadow: none;
    }
}

/* === CTA Icon Bounce === */
.guide-cta .guide-btn__icon svg {
    animation: ctaIconBounce 2s ease-in-out infinite;
}

@keyframes ctaIconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-2px);
    }
}

/* === Service Card Arrow Animation === */
.guide-work__service-arrow svg {
    transition: transform 0.3s ease;
}

.guide-work__service-card:hover .guide-work__service-arrow svg {
    animation: arrowPulse 0.6s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/* === Reduced Motion === */
@media (prefers-reduced-motion: reduce) {
    .guide-particle,
    .guide-btn__pulse-ring,
    .guide-btn__particle,
    .guide-mvv-card__icon,
    .guide-mvv-card__icon::after,
    .guide-belief__item-icon,
    .guide-portfolio-card__label svg,
    .guide-portfolio-card__tech svg,
    .guide-cta .guide-btn__icon svg,
    .guide-work__number::before {
        animation: none;
    }

    .guide-hero--video .guide-hero__avatar,
    .guide-hero--video .guide-hero__info,
    .guide-mvv-card,
    .guide-portfolio-card,
    .guide-belief__item,
    .guide-career__skills-list span,
    .guide-work__item {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .guide-belief__item-icon svg {
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }

    .guide-scroll-progress {
        display: none;
    }

    .guide-hobbies-card:hover .guide-hobbies-card__title::after {
        display: none;
    }

    /* Hide underwater/fairy effects */
    .guide-hobbies__effects {
        display: none;
    }
}
